aboutsummaryrefslogtreecommitdiffstats
path: root/apps/browser-extension/src
diff options
context:
space:
mode:
Diffstat (limited to 'apps/browser-extension/src')
-rw-r--r--apps/browser-extension/src/components/TagsSelector.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/browser-extension/src/components/TagsSelector.tsx b/apps/browser-extension/src/components/TagsSelector.tsx
index 45cf11d5..5ca3b2d0 100644
--- a/apps/browser-extension/src/components/TagsSelector.tsx
+++ b/apps/browser-extension/src/components/TagsSelector.tsx
@@ -32,14 +32,14 @@ export function TagsSelector({ bookmarkId }: { bookmarkId: string }) {
const { mutate } = useUpdateBookmarkTags({
onMutate: (req) => {
req.attach.forEach((t) => currentlyUpdating.add(t.tagId ?? ""));
- req.detach.forEach((t) => currentlyUpdating.add(t.tagId));
+ req.detach.forEach((t) => currentlyUpdating.add(t.tagId ?? ""));
},
onSettled: (_resp, _err, req) => {
if (!req) {
return;
}
req.attach.forEach((t) => currentlyUpdating.delete(t.tagId ?? ""));
- req.detach.forEach((t) => currentlyUpdating.delete(t.tagId));
+ req.detach.forEach((t) => currentlyUpdating.delete(t.tagId ?? ""));
},
});