Skip to content

Commit cc728e0

Browse files
Merge pull request #219 from microsoft/psl-blank-page-bug
fix: blank page issue when process failed
2 parents 87fb138 + fa11200 commit cc728e0

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)