Skip to content

Commit 31d250d

Browse files
committed
Simplify and prefix sessionStorage keys
1 parent 5233ba9 commit 31d250d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/redux/session/klage/helpers.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import type { ISessionCase } from '@app/components/case/uinnlogget/types';
22
import { getUniqueId } from '@app/functions/uuid';
33
import type { Innsendingsytelse } from '@app/innsendingsytelser/innsendingsytelser';
4-
import { CASE_TYPE_PATH_SEGMENTS, type CaseType } from '@app/redux-api/case/types';
4+
import type { CaseType } from '@app/redux-api/case/types';
55

66
export const getSessionCaseKey = (type: CaseType, ytelse: Innsendingsytelse): string =>
7-
`${CASE_TYPE_PATH_SEGMENTS[type]}-${ytelse}`;
7+
`klang-${type}-${ytelse}`.toLowerCase();
88

99
export const createSessionCase = (
1010
type: CaseType,

0 commit comments

Comments
 (0)