suppressHydrationWarning
not working as expected for app router
#75890
-
Link to the code that reproduces this issuehttps://github.com/aronwoost/nextjs-suppress-warning-issue To Reproduce
Current vs. Expected behaviorActual result: "Hello Server" is displayed Verify canary release
Provide environment informationOperating System:
Platform: darwin
Arch: arm64
Version: Darwin Kernel Version 20.6.0: Thu Jul 6 22:12:47 PDT 2023; root:xnu-7195.141.49.702.12~1/RELEASE_ARM64_T8101
Binaries:
Node: 18.17.0
npm: 9.6.7
Yarn: 1.22.5
pnpm: N/A
Relevant Packages:
next: 14.1.0
eslint-config-next: N/A
react: 18.2.0
react-dom: 18.2.0
typescript: 5.2.2
Next.js Config:
output: N/A Which area(s) are affected? (Select all that apply)Not sure Additional contextThis is the code in question: "use client";
import styles from "./page.module.css";
export default function Home() {
let helloLabel = "";
if (typeof window !== "undefined") {
helloLabel = "Client";
} else {
helloLabel = "Server";
}
return (
<main className={styles.main}>
<h1 suppressHydrationWarning>Hello {helloLabel}</h1>
</main>
);
}
|
Beta Was this translation helpful? Give feedback.
Replies: 23 comments 1 reply
-
I have the same issue. Hope we get a fix soon. |
Beta Was this translation helpful? Give feedback.
-
Issue persists with next@14.1 |
Beta Was this translation helpful? Give feedback.
-
same issue here, it would be nice to now if this is the expected behaviour on next or if it is a bug |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
It's expected behavior in all React 18+. |
Beta Was this translation helpful? Give feedback.
-
Can you point to documentation/change log? I only find this: https://react.dev/reference/react-dom/client/hydrateRoot#suppressing-unavoidable-hydration-mismatch-errors (and have been using |
Beta Was this translation helpful? Give feedback.
-
Also - even with React 18 - the Page Router still have the old behavior. |
Beta Was this translation helpful? Give feedback.
-
@sebmarkbage how come? |
Beta Was this translation helpful? Give feedback.
-
Just faced this one, we have an UTC datetime, which server prints on it's local time and on browser it will render on local user's time. Using suppressHydrationWarning prevents the datetime to display in local time and also does nothing about the hydration errors. |
Beta Was this translation helpful? Give feedback.
-
Hit this also as far as I can tell... Using a build time SSG dynamic route, that renders a client side component, e.g. blog/[id]/page.tsx - Leveraging
_blog/[id]/client.tsx - Exports client only component BlogClient. (NOTE: tried adding the supress at the root level in the client component as quick test, even though that's client rendered, but no change either) Next in dev mode suggests: https://nextjs.org/docs/messages/react-hydration-error#solution-3-using-suppresshydrationwarning As discussed above in this thread, it has had no effect, the warnings persist. |
Beta Was this translation helpful? Give feedback.
-
@d3vAdv3ntur3s Be aware that |
Beta Was this translation helpful? Give feedback.
-
I'm experiencing the same issue. 'use client';
import { updatedDateStyle } from './HouseTableUpdatedDate.css';
interface Props {
updatedAt: number;
}
const HouseTableUpdatedDate = (props: Props) => {
const { updatedAt } = props;
const updatedDate = new Intl.DateTimeFormat('ko', {
dateStyle: 'full',
timeStyle: 'medium',
}).format(updatedAt);
return <p className={updatedDateStyle}>{updatedDate}</p>;
};
export default HouseTableUpdatedDate; I'm on next 14.2.2 |
Beta Was this translation helpful? Give feedback.
-
Any update here 🤔 - same issue and wondering if it will be fixed soon or need to do something else 👀 |
Beta Was this translation helpful? Give feedback.
-
I just wont use app router until the mean time |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
I believe it does. Using "suppressHydrationWarning" is giving me different results in the rendered DOM, it doesn't simply just suppress warnings in Chrome dev tools. |
Beta Was this translation helpful? Give feedback.
-
Is there any workaround except not using suppressHydrationWarning? |
Beta Was this translation helpful? Give feedback.
-
![]() "next": "15.0.3", |
Beta Was this translation helpful? Give feedback.
-
Updates? NextJS 15, same issue. HTML with suppressHydrationWarning={true} is not disabling hydration warnings. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
This issue has been quite a headache. The only solution that worked for dev was @amiftachulh's suggestion (removing
"Turbopack currently only supports next dev and does not support next build" so I'm still uncertain where this error is coming from... |
Beta Was this translation helpful? Give feedback.
-
@aronwoost Can confirm this is the expected behavior, not just in App Router. → facebook/react#26391 Our Documentation should be updated 👀 |
Beta Was this translation helpful? Give feedback.
-
I am getting this hydration error, and not having a clue yet. ![]() |
Beta Was this translation helpful? Give feedback.
@aronwoost Can confirm this is the expected behavior, not just in App Router. → facebook/react#26391
Our Documentation should be updated 👀