Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardconstantin committed Nov 5, 2024
1 parent 5c0beeb commit a2b6020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/QuizForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const QuizForm: FC<Props> = ({
</button>
</div>
<p className="text-white md:px-12 pt-10 pb-5 select-none">{question}</p>
{images.length !== 0 && (
{images && (
<ul className="flex flex-row justify-center gap-2 mt-5 mb-8 select-none md:px-12 px-0">
{images.map((image) => (
<li
Expand Down

0 comments on commit a2b6020

Please sign in to comment.