Skip to content

Commit

Permalink
VKT(Frontend): PublicEnrollmentContactStepper fix exam dates shown wh…
Browse files Browse the repository at this point in the history
…en exactly one exam event available
  • Loading branch information
pkoivisto committed Dec 18, 2024
1 parent 7eb2895 commit 281f222
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export const PublicEnrollmentContactExaminer = ({
<Text key={i}>{getExamDateDescription(t, date)}</Text>
))}
<ul className="public-enrollment-contact__exam-dates">
{examDates.length > 0 &&
{examDates.length > 1 &&
examDates.map((date, i) => (
<Text key={i}>
<li>{getExamDateDescription(t, date)}</li>
Expand Down

0 comments on commit 281f222

Please sign in to comment.