Skip to content

Commit

Permalink
Feat/1.2.0/UI (#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
shuashuai authored Oct 18, 2023
1 parent 742437f commit 829a258
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ui/src/pages/Tags/Detail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ const Index: FC = () => {
const { data: tagResp, isLoading } = useTagInfo({ name: curTagName });
const { data: listData, isLoading: listLoading } = useQuestionList(reqParams);
const { data: followResp } = useFollow(tagFollow);
const { data: synonymsRes } = useQuerySynonymsTags(tagInfo?.tag_id, '');
const { data: synonymsRes } = useQuerySynonymsTags(
tagInfo?.tag_id,
tagInfo?.status,
);
const toggleFollow = () => {
if (!guard.tryNormalLogged(true)) {
return;
Expand Down

0 comments on commit 829a258

Please sign in to comment.