diff --git a/package.json b/package.json index 6566196..6d2b748 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "preview": "vite preview" }, "dependencies": { - "@codesandbox/sdk": "^1.0.0-rc.2", + "@codesandbox/sdk": "^1.0.0-rc.3", "@tailwindcss/vite": "^4.1.6", "@xterm/xterm": "^5.5.0", "express": "^5.1.0", diff --git a/src/Command.tsx b/src/Command.tsx index 5855ffa..46dd4de 100644 --- a/src/Command.tsx +++ b/src/Command.tsx @@ -101,7 +101,7 @@ export function CommandComponent({ session }: { session: WebSocketSession }) { xterm.clear(); setIsError(false); try { - const result = await session.commands.run("echo 'OPS!' && exit 1"); + const result = await session.commands.run("echo 'Oops!' && exit 1"); if (typeof result === "string") { xterm.write(result); setIsError(false);