Merge branch 'pr-404'

This commit is contained in:
ajaysi
2026-03-09 16:20:06 +05:30
13 changed files with 1708 additions and 20 deletions

View File

@@ -37,7 +37,8 @@
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build": "node --max_old_space_size=8192 node_modules/react-scripts/scripts/build.js",
"build:nomap": "node --max_old_space_size=8192 -e \"process.env.GENERATE_SOURCEMAP='false'; require('./node_modules/react-scripts/scripts/build');\"",
"test": "react-scripts test",
"eject": "react-scripts eject",
"analyze": "npm run build && npx source-map-explorer 'build/static/js/*.js' --html bundle-report.html",

View File

@@ -54,12 +54,12 @@ const toWorkflowError = (error: unknown, fallbackMessage: string): WorkflowError
if (error instanceof WorkflowError) return error;
const message = error instanceof Error ? error.message : fallbackMessage;
return {
return new WorkflowError({
code: 'WORKFLOW_ERROR',
message,
timestamp: new Date(),
recoverable: false,
};
});
};
const computeProgressAndNavigation = (workflow: DailyWorkflow): { progress: WorkflowProgress; navigation: NavigationState } => {