Skip to content

Commit

Permalink
fix: adjusting props parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
santosluiz000 committed Mar 23, 2021
1 parent eb7fea8 commit a7d65d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion react/components/Upload/Upload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const messages = defineMessages({
},
})

const InputUpload = (props: FormRawInputProps) => {
const InputUpload = (props: FormRawInputProps & { accept?: string }) => {
const intl = useIntl()
const [uploadFile] = useMutation<MutationData>(UploadFileMutation)
const ref = React.useRef<HTMLDivElement>(null)
Expand Down

0 comments on commit a7d65d3

Please sign in to comment.