Skip to content

Commit fec5f33

Browse files
committed
Fix ts
1 parent d0b4334 commit fec5f33

1 file changed

Lines changed: 7 additions & 12 deletions

File tree

src/renderer/src/components/ResultsDialog.tsx

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
import {
22
Error as ErrorIcon,
3+
ExpandMore as ExpandMoreIcon,
34
Info as InfoIcon,
45
CheckCircle as SuccessIcon,
5-
Warning as WarningIcon,
6-
ExpandMore as ExpandMoreIcon
6+
Warning as WarningIcon
77
} from '@mui/icons-material';
88
import {
9+
Accordion,
10+
AccordionDetails,
11+
AccordionSummary,
912
Alert,
1013
AlertTitle,
1114
Box,
@@ -17,20 +20,12 @@ import {
1720
DialogTitle,
1821
Divider,
1922
List,
20-
ListItem,
2123
Paper,
22-
Typography,
23-
Accordion,
24-
AccordionSummary,
25-
AccordionDetails,
26-
Table,
27-
TableBody,
28-
TableCell,
29-
TableRow
24+
Typography
3025
} from '@mui/material';
3126
import type { ProcessResult } from '@shared/types';
32-
import { useTranslation } from 'react-i18next';
3327
import { useState } from 'react';
28+
import { useTranslation } from 'react-i18next';
3429

3530
interface ResultsDialogProps {
3631
open: boolean;

0 commit comments

Comments
 (0)