Skip to content

Commit fa11200

Browse files
fix blank page issue
1 parent d2bd7f4 commit fa11200

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/frontend/src/pages/processPage.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,11 @@ const ProcessPage: React.FC = () => {
127127

128128
// Error state management
129129
const [migrationError, setMigrationError] = useState(false);
130+
const [errorDetails, setErrorDetails] = useState<{ reason: string; step: string; details: string }>({
131+
reason: '',
132+
step: '',
133+
details: '',
134+
});
130135

131136
// Helper function to clean phase name - removes "PHASE X - " prefix
132137
const cleanPhaseName = (phase: string): string => {

0 commit comments

Comments
 (0)