From 89b7c7b842b13a9b3f290ca52feca2e27813496f Mon Sep 17 00:00:00 2001 From: woo-jk Date: Thu, 29 Aug 2024 02:52:48 +0900 Subject: [PATCH] query key --- src/app/(sidebar)/(my-info)/apis/useGetCardTags.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(sidebar)/(my-info)/apis/useGetCardTags.ts b/src/app/(sidebar)/(my-info)/apis/useGetCardTags.ts index 75edf9ca..047e1427 100644 --- a/src/app/(sidebar)/(my-info)/apis/useGetCardTags.ts +++ b/src/app/(sidebar)/(my-info)/apis/useGetCardTags.ts @@ -2,7 +2,7 @@ import { http } from '@/apis/http'; import { TagType } from '@/types'; import { useQuery } from '@tanstack/react-query'; -export const GET_TAGS = 'tags'; +export const GET_TAGS = 'tagList'; type GetCardTagsRseponse = TagType[];