Skip to content

Commit 28349e7

Browse files
committed
chore: 처음 풀었을 때도, 0명이 풀었다는 텍스트를 보여주도록 수정
1 parent 46b0af1 commit 28349e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/quiz/TodayQuiz/QuizDisplay.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const QuizDisplay: React.FC<QuizDisplayProps> = ({
5050
</p>
5151

5252
{/* Total Count */}
53-
{totalCount && (
53+
{totalCount !== undefined && (
5454
<div className="mb-6 flex flex-col items-center justify-center gap-3 sm:flex-row">
5555
<div className="inline-flex items-center rounded-full bg-blue-100 px-4 py-2">
5656
<svg

0 commit comments

Comments
 (0)