devguard icon indicating copy to clipboard operation
devguard copied to clipboard

creating new org gives react does not recognize the isSubmitting

Open 5byuri opened this issue 2 months ago • 2 comments

Image

probably of new router mechanic

5byuri avatar Oct 02 '25 15:10 5byuri

whats good to note, is that the 3d animation is also not rendering

5byuri avatar Oct 02 '25 15:10 5byuri

@5byuri You can fix this by applying those concepts: https://react.dev/warnings/unknown-prop

Basically it is just a warning that there is a prop which wont get consumed. You can delete it before spreading the props.

whats good to note, is that the 3d animation is also not rendering

I had the issue a lot. There is now something like server and client components because of the new app router. Those animations need to run in a browser - not in the server. A "use client"; at the top of the file (checkout ThreeJSFeatureScreen) should fix the issue.

timbastin avatar Oct 02 '25 15:10 timbastin