From 7a3ab50f54cd2ac31ead3985c2aeb9c24d74fd2a Mon Sep 17 00:00:00 2001 From: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> Date: Fri, 18 Oct 2024 02:21:32 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Oliver Eyton-Williams --- src/quiz/quiz.stories.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/quiz/quiz.stories.tsx b/src/quiz/quiz.stories.tsx index 051d338..09ffa2a 100644 --- a/src/quiz/quiz.stories.tsx +++ b/src/quiz/quiz.stories.tsx @@ -104,7 +104,7 @@ const QuizWithValidation = () => { return (
- {correctAnswerCount &&

Correct answers: {correctAnswerCount}

} + {!!correctAnswerCount &&

Correct answers: {correctAnswerCount}

} @@ -432,7 +432,7 @@ const App = () => { return (
- {correctAnswerCount &&

Correct answers: {correctAnswerCount}

} + {!!correctAnswerCount &&

Correct answers: {correctAnswerCount}

}