Skip to content

Commit

Permalink
this commit will be dropped
Browse files Browse the repository at this point in the history
  • Loading branch information
swouf committed Nov 12, 2024
1 parent f437bee commit 340144d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/modules/common/WaitingScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { FC } from 'react';
import { useTranslation } from 'react-i18next';

import Alert from '@mui/material/Alert';
import Button from '@mui/material/Button';
import LinearProgress from '@mui/material/LinearProgress';
import Stack from '@mui/material/Stack';
import Typography from '@mui/material/Typography';
Expand Down Expand Up @@ -35,6 +36,16 @@ const WaitingScreen: FC<WaitingScreenProps> = ({ state }) => {
<li>{t('STEP3')}</li>
</ul>
</Typography>
<Button
onClick={() => {
const a = [1, 2];
// eslint-disable-next-line no-console
console.log(a[2.5]);
throw new Error('Oups...');
}}
>
Throw an error
</Button>
</Stack>
);
};
Expand Down

0 comments on commit 340144d

Please sign in to comment.