Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
vikibrezinova committed Aug 22, 2024
1 parent 7fc3929 commit 29bda74
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {Loading} from '../Loading/Loading'
import {PublicationUploader} from '../PublicationUploader/PublicationUploader'
import {Result} from '../Results/ResultsRow'
import styles from './SemesterAdministration.module.scss'
import { SecurityUpdateSharp } from '@mui/icons-material'
import {SecurityUpdateSharp} from '@mui/icons-material'

Check warning on line 17 in src/components/SemesterAdministration/SemesterAdministration.tsx

View workflow job for this annotation

GitHub Actions / branch-test

'SecurityUpdateSharp' is defined but never used

interface PostalCard {
code: number
Expand Down Expand Up @@ -113,7 +113,10 @@ export const SemesterAdministration: FC = () => {
<Stack key={series.id} gap={1} mt={5}>
<Typography variant="h2">{series.order}. séria</Typography>
<Stack pl={2} alignItems="start">
<Button variant="button2" onClick={() => axios.post(`/api/competition/series/${series.id}/results/freeze`)}>
<Button
variant="button2"
onClick={() => axios.post(`/api/competition/series/${series.id}/results/freeze`)}
>
Uzavrieť sériu
</Button>
</Stack>
Expand Down

0 comments on commit 29bda74

Please sign in to comment.