You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The loader function should handle Invalid Date objects in the same way as standard JSON.stringify, i.e., convert them to null and not cause a syntax error.
Actual Behavior
Oops! Unable to decode turbo-stream response
Additional Information
The issue seems to arise from how React Router handles the serialization of data returned from the loader. When performing JSON.stringify on an object containing an Invalid Date, the expected result is that the Invalid Date would be converted to null, but this bug causes a syntax error on the client side.
Possible Solution
React Router should ensure that handling invalid date objects matches the standard behavior of JSON.stringify or provide an alternative solution that prevents the application from crashing in such cases.
The text was updated successfully, but these errors were encountered:
I'm using React Router as a...
library
Reproduction
export async function loader() { return { invalidDateField: new Date('invalid-date-string') }; }
https://stackblitz.com/edit/github-rxhk6sn1-zaw2xuan?file=app%2Froutes%2Fhome.tsx
System Info
Used Package Manager
npm
Expected Behavior
{"siteTitle":"React Router","bug":null}
The loader function should handle Invalid Date objects in the same way as standard JSON.stringify, i.e., convert them to null and not cause a syntax error.
Actual Behavior
Oops! Unable to decode turbo-stream response
Additional Information
The issue seems to arise from how React Router handles the serialization of data returned from the loader. When performing JSON.stringify on an object containing an Invalid Date, the expected result is that the Invalid Date would be converted to null, but this bug causes a syntax error on the client side.
Possible Solution
React Router should ensure that handling invalid date objects matches the standard behavior of JSON.stringify or provide an alternative solution that prevents the application from crashing in such cases.
The text was updated successfully, but these errors were encountered: