Skip to content

Commit

Permalink
Fjern siste rest av å lese søknadstype fra URL
Browse files Browse the repository at this point in the history
  • Loading branch information
kristeine committed Mar 21, 2024
1 parent bff8f39 commit ec752ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { useEøs } from '../../../context/EøsContext';
import { useSteg } from '../../../context/StegContext';
import { ESøknadstype } from '../../../typer/kontrakt/generelle';
import { ISteg } from '../../../typer/routes';
import { hentSøknadstype } from '../../../typer/søknad';
import { logFortsettPåSøknad, logSkjemaStartet } from '../../../utils/amplitude';

export enum BekreftelseStatus {
Expand Down Expand Up @@ -47,7 +46,7 @@ export const useBekreftelseOgStartSoknad = (): {
søknad.lestOgForståttBekreftelse ? BekreftelseStatus.BEKREFTET : BekreftelseStatus.NORMAL
);

const [søknadstype, settSøknadstype] = useState<ESøknadstype>();
const [søknadstype, settSøknadstype] = useState<ESøknadstype>(ESøknadstype.ORDINÆR);
const [søknadstypeFeil, settSøknadstypeFeil] = useState<boolean>(false);

const [gjenopprettetFraMellomlagring, settGjenpprettetFraMellomlagring] = useState(false);
Expand All @@ -71,6 +70,7 @@ export const useBekreftelseOgStartSoknad = (): {
} = mellomlagretVerdi;

brukMellomlagretVerdi();
settSøknadstype(mellomlagretVerdi.søknad.søknadstype);
settBarnForSteg(barnInkludertISøknaden);
settBarnSomTriggerEøs(
barnInkludertISøknaden
Expand All @@ -82,7 +82,7 @@ export const useBekreftelseOgStartSoknad = (): {
} else {
navigate(nesteRoute.path);
}
logFortsettPåSøknad(søknadstype || hentSøknadstype());
logFortsettPåSøknad(søknadstype);
};
const startPåNytt = (): void => {
avbrytOgSlettSøknad();
Expand Down
6 changes: 0 additions & 6 deletions src/frontend/typer/søknad.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,6 @@ export interface ISøknad {
dokumentasjon: IDokumentasjon[];
}

export const hentSøknadstype = () => {
return window.location.pathname.includes('utvidet')
? ESøknadstype.UTVIDET
: ESøknadstype.ORDINÆR;
};

export const initialStateSøknad = (): ISøknad => {
return {
søknadstype: ESøknadstype.ORDINÆR,
Expand Down

0 comments on commit ec752ac

Please sign in to comment.