We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 87fb138 + fa11200 commit cc728e0Copy full SHA for cc728e0
1 file changed
src/frontend/src/pages/processPage.tsx
@@ -127,6 +127,11 @@ const ProcessPage: React.FC = () => {
127
128
// Error state management
129
const [migrationError, setMigrationError] = useState(false);
130
+ const [errorDetails, setErrorDetails] = useState<{ reason: string; step: string; details: string }>({
131
+ reason: '',
132
+ step: '',
133
+ details: '',
134
+ });
135
136
// Helper function to clean phase name - removes "PHASE X - " prefix
137
const cleanPhaseName = (phase: string): string => {
0 commit comments