kpop-stack icon indicating copy to clipboard operation
kpop-stack copied to clipboard

Upgrade to React 18 support with hydrateRoot

Open colesanderson opened this issue 2 years ago • 8 comments

I tried to upgrade to React 18 with hydrateRoot and got a few errors:

Uncaught Error: Hydration failed because the initial UI does not match what was rendered on the server Error: Hydration failed because the initial UI does not match what was rendered on the server. Uncaught Error: There was an error while hydrating. Because the error happened outside of a Suspense boundary, the entire root will switch to client rendering.

colesanderson avatar Jan 03 '23 05:01 colesanderson

I am only getting error when runnning ntl dev. No error when running with npm run dev:remix

colesanderson avatar Jan 03 '23 06:01 colesanderson

Screenshot 2023-01-02 at 10 27 57 PM

colesanderson avatar Jan 03 '23 06:01 colesanderson

That is the changes I made: Screenshot 2023-01-02 at 10 35 16 PM

colesanderson avatar Jan 03 '23 06:01 colesanderson

Hi @colesanderson! Thank you for your patience while we look into this issue.

When following the steps that you outlined, we were able to reproduce the hydration errors and resolve them by doing the steps below:

  1. Delete node_modules file
#2. re-install dependencies
npm install

#3.  Run local build
netlify build

#4. Run dev environment 
netlify dev

After going through those steps the hydration related errors should now be gone.

If for some reason you are still running into this error, instead of just deleting the node_modules you can clean your working directory to remove all un-tracked files. Before running the command please make sure to backup your env file or any other un-tracked files that you would like to preserve.

#1. this will remove everything listed in .gitignore
git clean -dfx 

#2. re-install dependencies
npm install
  1. add your .env file back in with the required env variables for supabase
#4. if you have an existing site already you will use link otherwise you will need to initialize your project
netlify init or netlify link

#5 Run local build
netlify build

#6 Run dev environment
netlify dev

I hope this helps, if the issue still persists please let us know.

taty2010 avatar Jan 12 '23 20:01 taty2010

@taty2010 Thank you for getting back to me!

I have followed both steps and still getting the same error in the console.log :(

colesanderson avatar Jan 14 '23 04:01 colesanderson

@colesanderson thanks for letting us know, are you able to provide us with a link to the repo with the issue so we can dig into this more?

taty2010 avatar Jan 17 '23 18:01 taty2010

Hey @taty2010 sorry for late response, there are not much changes in my repo. It will be super helpful if can upgrade kpop stack to React 18 and I can start new project off kpop stack?

colesanderson avatar Feb 21 '23 02:02 colesanderson

That is the changes I pushed. Screenshot 2023-02-20 at 6 32 18 PM

colesanderson avatar Feb 21 '23 02:02 colesanderson