Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into dev/endring-i-situasjon-ny-jobb
Browse files Browse the repository at this point in the history
  • Loading branch information
zrrrzzt committed Aug 2, 2023
2 parents da48933 + e527ef4 commit f9f11d7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/komponenter/innsyn/tilleggsdata.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import { Profil } from '../../profil';
import { PermittertSvar } from '../../models/endring-av-situasjon';
import { dokumentasjon_url } from '../../ducks/urls';
import { SituasjonSvar } from '../endre-situasjon/veiledning';
import { loggAktivitet } from '../../metrics/metrics';
import { useAmplitudeData } from '../hent-initial-data/amplitude-provider';

interface Props {
verdi: string | null;
Expand Down Expand Up @@ -37,6 +39,7 @@ const harSendtInnNyDokumentasjon = (profil: Profil | null, besvarelse: Besvarels
const SendInnDokumentasjon = (props: { aktuellSituasjon: SituasjonSvar }) => {
const { lagreProfil, profil } = useProfil();
const { besvarelse } = useBesvarelse();
const { amplitudeData } = useAmplitudeData();

const [visSpinner, settVisSpinner] = useState<boolean>(false);
const harSendtInnDokumentasjon = harSendtInnNyDokumentasjon(profil, besvarelse);
Expand All @@ -46,6 +49,7 @@ const SendInnDokumentasjon = (props: { aktuellSituasjon: SituasjonSvar }) => {
try {
settVisSpinner(true);
await lagreProfil({ aiaHarSendtInnDokumentasjonForEndring: new Date().toISOString() });
loggAktivitet({ aktivitet: 'Har sendt inn dokumentasjon', ...amplitudeData });
} finally {
settVisSpinner(false);
}
Expand Down

0 comments on commit f9f11d7

Please sign in to comment.