Skip to content

Commit 3f3a036

Browse files
committed
Fjerner default export
1 parent 5e2a8b4 commit 3f3a036

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/frontend/components/SøknadsSteg/Kvittering/Kvittering.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { RessursStatus } from '@navikt/familie-typer';
77

88
import { useApp } from '../../../context/AppContext';
99
import { useSteg } from '../../../context/StegContext';
10-
import useUxSignals from '../../../hooks/useUxSignals';
10+
import { useUxSignals } from '../../../hooks/useUxSignals';
1111
import { Dokumentasjonsbehov } from '../../../typer/kontrakt/dokumentasjon';
1212
import { RouteEnum } from '../../../typer/routes';
1313
import { Typografi } from '../../../typer/sanity/sanity';

src/frontend/hooks/useUxSignals.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { useEffect } from 'react';
22

33
import { getCurrentConsent } from '@navikt/nav-dekoratoren-moduler';
44

5-
const useUxSignals = (ready: boolean) => {
5+
export const useUxSignals = (ready: boolean) => {
66
const consent = getCurrentConsent();
77

88
useEffect(() => {
@@ -22,5 +22,3 @@ const useUxSignals = (ready: boolean) => {
2222
};
2323
}, [ready]);
2424
};
25-
26-
export default useUxSignals;

0 commit comments

Comments
 (0)