A bunch of changes, including moving prompt/confirm out of context

This commit is contained in:
Gregory Schier
2025-01-07 06:56:51 -08:00
parent 4776bbc753
commit 2f7b66fc92
41 changed files with 315 additions and 353 deletions

View File

@@ -1,10 +1,10 @@
import { createFileRoute } from '@tanstack/react-router'
import { Workspace } from '../../../components/Workspace'
import { createFileRoute } from '@tanstack/react-router';
import { Workspace } from '../../../components/Workspace';
interface WorkspaceSearchSchema {
request_id?: string | null
environment_id?: string | null
cookie_jar_id?: string | null
request_id?: string | null;
environment_id?: string | null;
cookie_jar_id?: string | null;
}
export const Route = createFileRoute('/workspaces/$workspaceId/')({
@@ -14,8 +14,8 @@ export const Route = createFileRoute('/workspaces/$workspaceId/')({
environment_id: search.environment_id as string,
cookie_jar_id: search.cookie_jar_id as string,
}),
})
});
function RouteComponent() {
return <Workspace />
return <Workspace />;
}