Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
johatr committed Sep 14, 2023
1 parent 8472ca5 commit 1b611bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,7 @@ const MoteAktivitetForm = (props: Props) => {
<TextField
label="Klokkeslett (obligatorisk)"
{...register('klokkeslett')}
type={'time' as any}
step="300"
type="time"
error={errors.klokkeslett && errors.klokkeslett.message}
/>
<Select
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ describe('MoteAktivitetForm', () => {
status: 'PLANLAGT',
tilDato: '2023-09-21T06:30:00.000Z',
tittel: 'Møte med NAV',
varighet: '30',
varighet: 30,
});
});

Expand Down Expand Up @@ -199,7 +199,7 @@ describe('MoteAktivitetForm', () => {
status: 'PLANLAGT',
tilDato: '2023-09-21T08:30:00.000Z',
tittel: 'Møte med NAV',
varighet: '150',
varighet: 150,
});
});

Expand Down

0 comments on commit 1b611bc

Please sign in to comment.