Skip to content

Commit 96ac097

Browse files
committed
Format autofixed redirect throws
Wrap the redirect throw in vercel.onboarding.tsx that exceeded the 100-char print width after the await insertion, so oxfmt --check passes. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01EZ8nrziWFcXhqGewJgo4ei
1 parent 08ba53a commit 96ac097

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

apps/webapp/app/routes/vercel.onboarding.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,11 @@ export async function loader({ request }: LoaderFunctionArgs) {
151151
organizationId: params.data.organizationId,
152152
userId,
153153
});
154-
throw await redirectWithErrorMessage("/", request, "Organization not found. Please try again.");
154+
throw await redirectWithErrorMessage(
155+
"/",
156+
request,
157+
"Organization not found. Please try again."
158+
);
155159
}
156160

157161
return typedjson({

0 commit comments

Comments
 (0)