Skip to content

Commit

Permalink
Fiks visning av fullmakt
Browse files Browse the repository at this point in the history
  • Loading branch information
betsytraran committed Jan 7, 2025
1 parent 42835eb commit 659b655
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ export const PdlVisning = ({
(id) => !id.historisk && id.gruppe === 'FOLKEREGISTERIDENT',
)

const erDoed = doedsfall?.find((d) => d.doedsdato)

return (
<ErrorBoundary>
<div className={miljoeVisning ? 'boks' : ''}>
Expand Down Expand Up @@ -129,7 +131,7 @@ export const PdlVisning = ({
erPdlVisning={miljoeVisning}
/>
<PdlRelasjoner data={hentPerson} />
<FullmaktVisning ident={gjeldendeIdent?.ident} />
{!erDoed && <FullmaktVisning ident={gjeldendeIdent?.ident} />}
<FalskIdentitet data={falskIdentitet} />
<UtenlandsId data={utenlandskIdentifikasjonsnummer} />
<KontaktinformasjonForDoedsbo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ export const PdlfVisning = ({ fagsystemData, loading, tmpPersoner, erRedigerbar

const bankkontoData = getBankkontoData(fagsystemData)

const erDoed = data?.person?.doedsfall?.find((d) => d.doedsdato)

return (
<ErrorBoundary>
<div>
Expand Down Expand Up @@ -196,7 +198,7 @@ export const PdlfVisning = ({ fagsystemData, loading, tmpPersoner, erRedigerbar
ident={ident}
erRedigerbar={erRedigerbar}
/>
<FullmaktVisning ident={ident} />
{!erDoed && <FullmaktVisning ident={ident} />}
<FalskIdentitet data={data?.person?.falskIdentitet} />
<UtenlandsId
data={data?.person?.utenlandskIdentifikasjonsnummer}
Expand Down

0 comments on commit 659b655

Please sign in to comment.