Skip to content

Commit

Permalink
Legger til type for ArbeidIUtlandetStep ved submit (#4704)
Browse files Browse the repository at this point in the history
* Legger til type for ArbeidIUtlandetStep ved submit

* Fikser test
  • Loading branch information
espenwaaga authored Oct 2, 2024
1 parent b0a3a67 commit 80dc987
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ describe('<ArbeidIUtlandet>', () => {
data: {
arbeidIUtlandet: [
{
type: 'JOBB_I_UTLANDET',
arbeidsgiverNavn: 'Arbeidsgiver',
land: 'UA',
pågående: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import useStepConfig from 'appData/useStepConfig';
import useSvpNavigator from 'appData/useSvpNavigator';
import { useForm } from 'react-hook-form';
import { useIntl } from 'react-intl';
import { ArbeidIUtlandet } from 'types/ArbeidIUtlandet';
import { ArbeidIUtlandet, ArbeidIUtlandetType } from 'types/ArbeidIUtlandet';
import { getAktiveArbeidsforhold, søkerHarKunEtAktivtArbeid } from 'utils/arbeidsforholdUtils';

import { VStack } from '@navikt/ds-react';
Expand Down Expand Up @@ -63,7 +63,12 @@ const ArbeidIUtlandetStep: React.FunctionComponent<Props> = ({
const oppdaterValgtTilretteleggingId = useContextSaveData(ContextDataType.VALGT_TILRETTELEGGING_ID);

const onSubmit = (values: ArbeidIUtlandet) => {
oppdaterArbeidIUtlandet(values);
oppdaterArbeidIUtlandet({
arbeidIUtlandet: values.arbeidIUtlandet.map((v) => ({
...v,
type: ArbeidIUtlandetType.JOBB_I_UTLANDET,
})),
});

const { nextRoute, nextTilretteleggingId } = getNextRouteValgAvArbeidEllerSkjema(
barnet.termindato,
Expand Down

0 comments on commit 80dc987

Please sign in to comment.