Skip to content

Commit

Permalink
fix(deps): bump react-dropzone from 12.1.0 to 14.2.3
Browse files Browse the repository at this point in the history
Bumps [react-dropzone](https://github.com/react-dropzone/react-dropzone) from 12.1.0 to 14.2.3.
- [Release notes](https://github.com/react-dropzone/react-dropzone/releases)
- [Commits](react-dropzone/react-dropzone@v12.1.0...v14.2.3)

---
updated-dependencies:
- dependency-name: react-dropzone
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and baumandm committed Jan 3, 2024
1 parent e28483a commit 903b41d
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 36 deletions.
65 changes: 32 additions & 33 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1",
"react-dom": "18.2.0",
"react-dropzone": "12.1.0",
"react-dropzone": "14.2.3",
"react-error-boundary": "4.0.3",
"react-ga": "3.3.0",
"react-helmet": "6.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@

import type { BoxProps } from '@chakra-ui/react';
import { Box, Button, Icon } from '@chakra-ui/react';
import type { Accept } from 'react-dropzone';
import { useDropzone } from 'react-dropzone';

import { iconFactory } from '../../shared/icon-factory';

export const DROPZONE_ACCEPT_ALL_FILES = '';
export const DROPZONE_ACCEPT_ALL_FILES = {};

interface Props {
onDrop: any;
accept?: string;
accept?: Accept;
element?: any;
dragElement?: any;
}
Expand Down

0 comments on commit 903b41d

Please sign in to comment.