From fd37bae731f46f99260f8b81870a1351f95b0056 Mon Sep 17 00:00:00 2001 From: Birk Skyum Date: Mon, 10 Mar 2025 18:08:54 +0100 Subject: [PATCH] fix(codesandbox): open ./src instead of ./app on launch --- app/utils/sandbox.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/sandbox.ts b/app/utils/sandbox.ts index ad9d8f6cf..a117e579e 100644 --- a/app/utils/sandbox.ts +++ b/app/utils/sandbox.ts @@ -5,7 +5,7 @@ export const getInitialSandboxFileName = ( libraryId?: string ) => { if (libraryId === 'start') { - return 'app/routes/__root.tsx' + return 'src/routes/__root.tsx' } const dir = 'src'