Skip to content

Commit

Permalink
VKT(Frontend): Fix exam date and registration closing date display [d…
Browse files Browse the repository at this point in the history
…eploy]
  • Loading branch information
pkoivisto committed Dec 10, 2024
1 parent 27d5597 commit 71ad8d2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const ExaminerExamEventDetails = () => {
</div>
<div className="rows grow gapped-sm margin-top-lg">
<H3>{t('header.examDate')}:</H3>
<Text>{DateTimeUtils.renderDateTime(examEvent.date)}</Text>
<Text>{DateTimeUtils.renderDate(examEvent.date)}</Text>
</div>
<div className="rows grow gapped-sm margin-top-lg">
<H3>{t('header.municipality')}:</H3>
Expand All @@ -112,7 +112,7 @@ export const ExaminerExamEventDetails = () => {
<div className="rows grow gapped-sm margin-top-lg">
<H3>{t('header.registrationCloses')}:</H3>
<Text>
{DateTimeUtils.renderDateTime(examEvent.registrationCloses)}
{DateTimeUtils.renderDate(examEvent.registrationCloses)}
</Text>
</div>
<div className="rows grow gapped-sm margin-top-lg">
Expand Down

0 comments on commit 71ad8d2

Please sign in to comment.