Skip to content

Commit a2b6020

Browse files
Fix error
1 parent 5c0beeb commit a2b6020

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/QuizForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ const QuizForm: FC<Props> = ({
142142
</button>
143143
</div>
144144
<p className="text-white md:px-12 pt-10 pb-5 select-none">{question}</p>
145-
{images.length !== 0 && (
145+
{images && (
146146
<ul className="flex flex-row justify-center gap-2 mt-5 mb-8 select-none md:px-12 px-0">
147147
{images.map((image) => (
148148
<li

0 commit comments

Comments
 (0)