Skip to content

Commit

Permalink
Kaller mutate på bestillingsendepunktet etter endring
Browse files Browse the repository at this point in the history
  • Loading branch information
matsbyfl committed Nov 8, 2024
1 parent 7745a34 commit fb3bc59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/saksbilde/hjelpemidler/Hjelpemiddel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export function Hjelpemiddel({ hjelpemiddel, forenkletVisning, sak }: Hjelpemidd
const [visEndreProdukt, setVisEndreProdukt] = useState(false)
const { mutate } = useSWRConfig()
const { harTilbakeleveringsVarsel, harAlleredeLevertVarsel } = useVarselsregler()
const { bestilling } = useBestilling()
const { bestilling, mutate: mutateBestilling } = useBestilling()

const produkt = useFinnHjelpemiddel(hjelpemiddel.produkt.hmsArtNr)

Expand All @@ -70,7 +70,7 @@ export function Hjelpemiddel({ hjelpemiddel, forenkletVisning, sak }: Hjelpemidd
.catch(() => console.error('error endre hjelpemiddel'))
.then(() => {
mutate(`api/sak/${sakId}`)
mutate(`api/bestilling/${sakId}`)
mutateBestilling()
mutate(`api/sak/${sakId}/historikk`)
})
setVisEndreProdukt(false)
Expand Down

0 comments on commit fb3bc59

Please sign in to comment.