Skip to content

Commit

Permalink
fix: types fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gparlakov committed Sep 6, 2024
1 parent f68fd7f commit 1fa4f99
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ import { StyledStepHeading } from '../helpers/campaignApplication.styled'
import theme from 'common/theme'
import FileList from 'components/common/file-upload/FileList'
import FileUpload from 'components/common/file-upload/FileUpload'
import { Dispatch, SetStateAction } from 'react'

export type Props = {
files: File[]
setFiles: (files: File[]) => void
setFiles: Dispatch<SetStateAction<File[]>>
}

export default function CampaignApplicationDetails({ files, setFiles }: Props) {
Expand Down

0 comments on commit 1fa4f99

Please sign in to comment.