We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0590df commit 330604fCopy full SHA for 330604f
1 file changed
frontend/components/Bookmark/BookmarkCard.tsx
@@ -221,6 +221,7 @@ export default function BookmarkCard({ bookmark }: Readonly<BookmarkProp>) {
221
addTagToBookmark(bookmark, tag).then((action) => {
222
dispatch(action);
223
setStrTags([...strTags, tag]);
224
+ currentBookmark.current.tags.push({ id: action.id, title: action.title });
225
});
226
227
function getIdxFromTitle(title: string): number {
0 commit comments