creating new org gives react does not recognize the isSubmitting
probably of new router mechanic
whats good to note, is that the 3d animation is also not rendering
@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.