-
Notifications
You must be signed in to change notification settings - Fork 121
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
[<UI-REACT>]: React 19 + Next 15 #216
Comments
we need to upgrade jsx transformer perhaps |
Yeah, i'm having the exact problem in my projejct |
Yo, anyone found a solution yet? Currently working on a big dApp and don't have time to take a look myself :) |
SAME ISSUE HERE |
maybe the best solution would be downgrading into next14 and react18 |
Yeah but, having the perks of Next 15 like turbopack would be great, I think. |
I guess so, i actually downgraded the project to Next 14. I think this would be resolved in a later update |
Still same+ |
same |
@thekiba bro, mind taking a look? |
yo guys, any update? |
@thekiba can be fixed by correctly not bundling react by setting the external option in the vite.config to: |
I just changed my dependency from Then I just imported components from copied files and it works fine so far, I don't think it will cause any issues in a future but I will make update of this comment if something will brake |
Is there any chance this will be fixed in any upcoming releases now that react 19.0.0 is stable also? Thanks! |
Describe the bug
TypeError: Cannot read properties of undefined (reading 'ReactCurrentDispatcher')
"use client"; import { TonConnectUIProvider } from "delab-tonconnect-ui-react"; export function Providers({ children }: { children: React.ReactNode }) { return ( <TonConnectUIProvider manifestUrl="https://web.example.com/"> {children} </TonConnectUIProvider> ); }
Expected behavior
works :D
Current behavior
Steps to Reproduce
pnpx create-next-app@rc --empty + install ton connect react
Environment
next 15, react 19, macos
Additional context
No response
The text was updated successfully, but these errors were encountered: