We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4170809 commit 92c857fCopy full SHA for 92c857f
site/src/modules/resources/AgentDevcontainerCard.tsx
@@ -254,7 +254,8 @@ export const AgentDevcontainerCard: FC<AgentDevcontainerCardProps> = ({
254
disabled={devcontainer.status === "starting"}
255
>
256
<Spinner loading={devcontainer.status === "starting"} />
257
- {devcontainer.container === undefined ? <>Start</> : <>Rebuild</>}
+
258
+ {devcontainer.container === undefined ? "Start" : "Rebuild"}
259
</Button>
260
261
{showDevcontainerControls && displayApps.includes("ssh_helper") && (
0 commit comments