Skip to content

Preserve status code on clientAction throw data() results #13522

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/late-hats-yell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"react-router": patch
---

Preserve status code if a `clientAction` throws a `data()` result in framework mode
8 changes: 6 additions & 2 deletions packages/react-router/lib/dom/ssr/single-fetch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as React from "react";

import { decode } from "../../../vendor/turbo-stream-v2/turbo-stream";
import type { Router as DataRouter } from "../../router/router";
import { isResponse } from "../../router/router";
import { isDataWithResponseInit, isResponse } from "../../router/router";
import type {
DataStrategyFunction,
DataStrategyFunctionArgs,
Expand Down Expand Up @@ -289,7 +289,11 @@ async function singleFetchActionStrategy(
return result;
});

if (isResponse(result.result) || isRouteErrorResponse(result.result)) {
if (
isResponse(result.result) ||
isRouteErrorResponse(result.result) ||
isDataWithResponseInit(result.result)
) {
return { [actionMatch.route.id]: result };
}

Expand Down