Reverted to commit ceb9b8c1a1

This commit is contained in:
gpt-engineer-app[bot]
2026-05-13 21:12:16 +00:00
parent 96e806042f
commit fe2d6a3ae0
16 changed files with 128 additions and 931 deletions
-4
View File
@@ -7,8 +7,6 @@ import Index from "./pages/Index";
import Viewer from "./pages/Viewer";
import XRSession from "./pages/XRSession";
import NotFound from "./pages/NotFound";
// DEVKIT: remove this import + route to strip devkit
import SmokeTest from "./devkit/SmokeTest";
const queryClient = new QueryClient();
@@ -22,8 +20,6 @@ const App = () => (
<Route path="/" element={<Index />} />
<Route path="/viewer" element={<Viewer />} />
<Route path="/xr" element={<XRSession />} />
{/* DEVKIT: remove this route to strip devkit */}
<Route path="/devkit/smoke" element={<SmokeTest />} />
<Route path="*" element={<NotFound />} />
</Routes>
</BrowserRouter>