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 9ae17dd commit a2e0883
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ import { StyledStepHeading } from '../helpers/campaignApplication.styled'

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 a2e0883

Please sign in to comment.