From ccf7b578808f2ae55833fd23cabd4de6b40e6548 Mon Sep 17 00:00:00 2001 From: mihee Date: Wed, 27 Dec 2023 19:06:39 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=A6=AC=EB=B7=B0=20=EC=9E=91=EC=84=B1?= =?UTF-8?q?=20=EC=97=AC=EB=B6=80=20dev=EC=9A=A9=20=EB=B3=80=EC=88=98=20?= =?UTF-8?q?=EA=B0=92=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/reviews/components/ReviewRating/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/reviews/components/ReviewRating/index.tsx b/src/features/reviews/components/ReviewRating/index.tsx index 2ebabe8c..42b9eafa 100644 --- a/src/features/reviews/components/ReviewRating/index.tsx +++ b/src/features/reviews/components/ReviewRating/index.tsx @@ -25,7 +25,7 @@ interface ReviewRatingProps { const DEBOUNCE_DELAY = 200; export default function ReviewRating({ animeId }: ReviewRatingProps) { - const hasReview = true; // dev용 변수 + const hasReview = false; // dev용 변수 const { user } = useAuth(); const toast = useToast();