Skip to content

Commit

Permalink
Merge pull request #4775 from navikt/fix/valider-forslag-godkjenn
Browse files Browse the repository at this point in the history
Fiks visning av backend valideringsfeil i arrangor-flate
  • Loading branch information
fredrikpe authored Dec 10, 2024
2 parents 5109d3a + a2a5403 commit c53038a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const action: ActionFunction = async ({ request }) => {
// Remix revaliderer loader data ved actions, så når denne feilmeldingen vises skal allerede kravet
// være oppdatert. Det kan hende vi i fremtiden vil vise _hva_ som har endret seg også, men det
// får vi ta senere.
return { errors: [apiError.body.errors] };
return { errors: apiError.body.errors };
}
throw e;
}
Expand Down

0 comments on commit c53038a

Please sign in to comment.