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
Expected behavior with static rendering. You can use CSS, or create a component to avoid SSR:
import{useState,useEffect}from'react';exportfunctionNoSSR({ children }){const[ready,setReady]=useState(false);useEffect(()=>{setReady(true);},[])if(!ready)returnnull;returnchildren;}
Which package manager are you using? (Yarn is recommended)
yarn
Summary
Then console says
Uncaught Error
Prop
style
did not match. Server: "height:0px" Client: "height:772px"Minimal reproducible example
in Summary
The text was updated successfully, but these errors were encountered: