Skip to content

Commit

Permalink
BookmarkList FileDropZone
Browse files Browse the repository at this point in the history
  • Loading branch information
haishanh committed Feb 24, 2024
1 parent 38b2d88 commit e263353
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/bookmark/BookmarkList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
});
};
let toastId: number;
let toastId: string;
const undo = () => {
return restore().then(
Expand Down
3 changes: 1 addition & 2 deletions src/routes/settings/import/FileDropZone.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import ArrowUpCircle from '@hsjs/svelte-icons/feather/ArrowUpCircle.svelte';
import Inbox from '@hsjs/svelte-icons/feather/Inbox.svelte';
import Dropzone from 'svelte-file-dropzone/Dropzone.svelte';
import Dropzone from 'svelte-file-dropzone';
import Button from '$lib/components/base/Button.svelte';
import Spinner from '$lib/components/feedback/Spinner.svelte';
Expand Down Expand Up @@ -37,7 +37,6 @@

<div class="wrap">
<Dropzone
inputElement={null}
containerClasses="dzone {dragenter ? 'dragenter' : ''}"
multiple={false}
{accept}
Expand Down

0 comments on commit e263353

Please sign in to comment.