Skip to content

Commit

Permalink
Minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
spaaaacccee committed Mar 7, 2024
1 parent 9b837fa commit a536506
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/components/inspector/FileDropZone.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ export function FileDropZone() {
if (!totalClaimed) {
const success = await loadWorkspace(head(fs));
if (success) return;
notify(
`Couldn't open ${fs.length} of ${pluralize("file", fs.length, true)}`
);
}
notify(
`Couldn't open ${fs.length} of ${pluralize("file", fs.length, true)}`
);
}

return (
Expand Down

0 comments on commit a536506

Please sign in to comment.