Skip to content

added type check for react typescript type error for eslint #219

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Dropzone.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ class Dropzone extends React.Component<IDropzoneProps, { active: boolean; dragge
try {
params = await getUploadParams(fileWithMeta)
} catch (e) {
console.error('Error Upload Params', e.stack)
console.error('Error Upload Params', (e as Error).stack)
}
if (params === null) return
const { url, method = 'POST', body, fields = {}, headers = {}, meta: extraMeta = {} } = params
Expand Down Expand Up @@ -630,7 +630,7 @@ class Dropzone extends React.Component<IDropzoneProps, { active: boolean; dragge
const SubmitButton = SubmitButtonComponent || SubmitButtonDefault
const Layout = LayoutComponent || LayoutDefault

let previews = null
let previews: React.ReactNode[] = []
if (PreviewComponent !== null) {
previews = files.map(f => {
return (
Expand Down