From 5b01ebdb61ad680fd7b31a86b89931a896ac354a Mon Sep 17 00:00:00 2001 From: Chris Arderne Date: Tue, 30 Jun 2026 16:45:20 +0100 Subject: [PATCH] fix: conform error snuck through (#4089) --- apps/webapp/app/routes/invites.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/webapp/app/routes/invites.tsx b/apps/webapp/app/routes/invites.tsx index cccd1073a..2d7e4b1c0 100644 --- a/apps/webapp/app/routes/invites.tsx +++ b/apps/webapp/app/routes/invites.tsx @@ -107,7 +107,7 @@ export const action: ActionFunction = async ({ request }) => { return json( { - intent: submission.intent, + intent: intent, payload: submission.payload, error: { "": [error.message] }, }, @@ -144,7 +144,7 @@ export default function Page() { className="mb-0 text-sky-500" title={simplur`You have ${invites.length} new invitation[|s]`} /> - {form.error} + {form.errors} {invites.map((invite) => (