diff --git a/frontend/src/components/tagFilter/TagFilter.tsx b/frontend/src/components/tagFilter/TagFilter.tsx index 9fd11754a..aaaa2bcd1 100644 --- a/frontend/src/components/tagFilter/TagFilter.tsx +++ b/frontend/src/components/tagFilter/TagFilter.tsx @@ -35,7 +35,7 @@ const TagFilter: FC = ({ allowDeleted = false, }) => { const client = useApolloClient(); - const { data: tagData } = useTag({ id: tagId }); + const { data: tagData } = useTag({ id: tagId }, !tagId); const selectedTag = tagData?.findTag; const handleChange = (result: OnChangeValue) => {