Skip to content

Commit

Permalink
legger til manglende key
Browse files Browse the repository at this point in the history
  • Loading branch information
di0nys1us committed Sep 5, 2024
1 parent e42f30f commit 5ad3e8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/saksbilde/hjelpemidler/Hjelpemiddel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ export function Hjelpemiddel({ hjelpemiddel, forenkletVisning, sak }: Hjelpemidd
</div>
</HjelpemiddelGrid>
{hjelpemiddel.tilbehør.map((tilbehør) => (
<>
<HjelpemiddelGrid key={tilbehør.hmsNr}>
<Fragment key={tilbehør.hmsNr}>
<HjelpemiddelGrid>
<div style={{ paddingTop: 5 }}>{tilbehør.antall} stk</div>
<VStack>
<HStack gap="1" align="center">
Expand All @@ -186,7 +186,7 @@ export function Hjelpemiddel({ hjelpemiddel, forenkletVisning, sak }: Hjelpemidd
)}
</VStack>
</HjelpemiddelGrid>
</>
</Fragment>
))}
</>
)}
Expand Down

0 comments on commit 5ad3e8a

Please sign in to comment.