add more debug logs

This commit is contained in:
Ramnique Singh 2025-07-18 19:18:32 +05:30
parent 5a850e485a
commit 88ddc11db4
2 changed files with 4 additions and 0 deletions

View file

@ -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') {

View file

@ -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}