Fix hydration error by this npm package
If you have worked with or working with Next.js you have definitely came across this hydration error.
Fix Method ##1
Simple fix for this error is
const [isMounted, setIsMounted] = useState(false);
useEffect(() => {
setIsMounted(true);
}, [...
faisal004.hashnode.dev1 min read