Skip to content

Commit

Permalink
Fix TS typing in DownloadVesselListModal
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangabriele committed Sep 9, 2024
1 parent 888df14 commit 8429d0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/features/VesselList/DownloadVesselListModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ export function DownloadVesselListModal({ filteredVessels, isOpen, setIsOpen })
<StyledCheckboxGroup
inline
name="checkboxList"
onChange={handleChange}
value={checkboxState.valuesChecked || []}
onChange={handleChange as any}
value={checkboxState.valuesChecked}
>
<div>
<Checkbox value={CSVOptions.riskFactor.code}>Note de risque</Checkbox>
Expand Down

0 comments on commit 8429d0c

Please sign in to comment.