aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/components')
-rw-r--r--apps/web/components/dashboard/BulkBookmarksAction.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/web/components/dashboard/BulkBookmarksAction.tsx b/apps/web/components/dashboard/BulkBookmarksAction.tsx
index b78071ee..bed1bda8 100644
--- a/apps/web/components/dashboard/BulkBookmarksAction.tsx
+++ b/apps/web/components/dashboard/BulkBookmarksAction.tsx
@@ -83,6 +83,7 @@ export default function BulkBookmarksAction() {
toast({
description: `${selectedBookmarks.length} bookmarks have been deleted!`,
});
+ setIsDeleteDialogOpen(false);
};
const alreadyFavourited =
@@ -102,7 +103,7 @@ export default function BulkBookmarksAction() {
hidden: !isBulkEditEnabled,
},
{
- name: alreadyArchived ? "Un-arhcive" : "Archive",
+ name: alreadyArchived ? "Un-archive" : "Archive",
icon: <ArchivedActionIcon size={18} archived={!!alreadyArchived} />,
action: () => updateBookmarks({ archived: !alreadyArchived }),
isPending: updateBookmarkMutator.isPending,