mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-01 11:26:23 +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 [eligibleModels, setEligibleModels] = useState<z.infer<typeof ModelsResponse> | "*">("*");
|
||||
|
||||
console.log('workflow app.tsx render');
|
||||
|
||||
// choose which workflow to display
|
||||
let workflow: z.infer<typeof Workflow> | undefined = project?.draftWorkflow;
|
||||
if (mode == 'live') {
|
||||
|
|
|
|||
|
|
@ -32,6 +32,8 @@ export default async function Page(
|
|||
await migrate_versioned_workflows(params.projectId);
|
||||
}
|
||||
|
||||
console.log('/workflow page.tsx serve');
|
||||
|
||||
return (
|
||||
<App
|
||||
projectId={params.projectId}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue