diff --git a/src/App/OrganisasjonDetaljerProvider.tsx b/src/App/OrganisasjonDetaljerProvider.tsx index 27c991866..dcde46aa0 100644 --- a/src/App/OrganisasjonDetaljerProvider.tsx +++ b/src/App/OrganisasjonDetaljerProvider.tsx @@ -56,7 +56,7 @@ export const OrganisasjonsDetaljerProvider: FunctionComponent = ({ childr if (orgInfo.altinntilgang.rekruttering) { settBedriftIPam(orgInfo.organisasjon.OrganizationNumber).then(() => - hentAntallannonser().then(setantallAnnonser) + hentAntallannonser(orgInfo.organisasjon.OrganizationNumber).then(setantallAnnonser) ); } else { setantallAnnonser(0); diff --git a/src/api/pamApi.ts b/src/api/pamApi.ts index b6d53a1f9..f47feb05e 100644 --- a/src/api/pamApi.ts +++ b/src/api/pamApi.ts @@ -13,11 +13,14 @@ interface PamStatusAnnonser { PUBLISERT: number; } -export const hentAntallannonser = async (): Promise => { +export const hentAntallannonser = async (orgnr: string): Promise => { const respons = await fetch( '/min-side-arbeidsgiver/stillingsregistrering-api/api/stillinger/numberByStatus', { method: 'GET', + headers: { + organizationNumber: orgnr, + }, } ); if (respons.ok) {