fix: tag unarchive/archive issue

This commit is contained in:
Timothy J. Baek
2024-10-14 22:57:11 -07:00
parent d8a30bd6ae
commit 6703cacb99
9 changed files with 72 additions and 30 deletions

View File

@@ -2,7 +2,7 @@
import {
addTagById,
deleteTagById,
getAllChatTags,
getAllTags,
getChatList,
getChatListByTagName,
getTagsById,
@@ -37,7 +37,7 @@
tags: tags
});
await _tags.set(await getAllChatTags(localStorage.token));
await _tags.set(await getAllTags(localStorage.token));
dispatch('add', {
name: tagName
});
@@ -50,7 +50,7 @@
tags: tags
});
await _tags.set(await getAllChatTags(localStorage.token));
await _tags.set(await getAllTags(localStorage.token));
dispatch('delete', {
name: tagName
});