Skip to content

Commit

Permalink
Fiks visning av backend valiederingsfeil i arrangor-flate
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikpe committed Dec 10, 2024
1 parent a460fb1 commit a2a5403
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 a2a5403

Please sign in to comment.