Skip to content

Commit

Permalink
fix: 리뷰 작성 여부 dev용 변수 값 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
imdaxsz committed Dec 27, 2023
1 parent 9eb985f commit ccf7b57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/reviews/components/ReviewRating/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit ccf7b57

Please sign in to comment.