mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-16 18:25:17 +02:00
add more debug logs
This commit is contained in:
parent
5a850e485a
commit
88ddc11db4
2 changed files with 4 additions and 0 deletions
|
|
@ -29,6 +29,8 @@ export function App({
|
||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
const [eligibleModels, setEligibleModels] = useState<z.infer<typeof ModelsResponse> | "*">("*");
|
const [eligibleModels, setEligibleModels] = useState<z.infer<typeof ModelsResponse> | "*">("*");
|
||||||
|
|
||||||
|
console.log('workflow app.tsx render');
|
||||||
|
|
||||||
// choose which workflow to display
|
// choose which workflow to display
|
||||||
let workflow: z.infer<typeof Workflow> | undefined = project?.draftWorkflow;
|
let workflow: z.infer<typeof Workflow> | undefined = project?.draftWorkflow;
|
||||||
if (mode == 'live') {
|
if (mode == 'live') {
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,8 @@ export default async function Page(
|
||||||
await migrate_versioned_workflows(params.projectId);
|
await migrate_versioned_workflows(params.projectId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.log('/workflow page.tsx serve');
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<App
|
<App
|
||||||
projectId={params.projectId}
|
projectId={params.projectId}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue