We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5da43f commit 16574d0Copy full SHA for 16574d0
src/components/SelectTag/SelectTag.tsx
@@ -45,6 +45,7 @@ const SelectTag = () => {
45
setIsBottomSheetOpen(false);
46
if (!tagList.includes(newTag)) {
47
setTagList((prevTagList: string[]) => [...prevTagList, newTag]);
48
+ setSelectedTagList((prevSelectedTags) => [...prevSelectedTags, newTag]);
49
}
50
};
51
0 commit comments