Skip to content

Commit

Permalink
Merge pull request #257 from innovencelabs/release-fix
Browse files Browse the repository at this point in the history
πŸ› Minor type temp fix
  • Loading branch information
ambujraj authored May 23, 2024
2 parents d1b744c + ed8fa99 commit c616565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/(pages)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export default function Home() {
const files = Array.from(event.target.files)

const newFiles = files.filter(
(file) =>
(file: any) =>
!selectedFiles.some(
(prevFile) =>
prevFile.name === file.name && prevFile.size === file.size,
Expand Down

0 comments on commit c616565

Please sign in to comment.