I was using NextJS 14 with shadcn, I added this: suppressHydrationWarning={true}, in the html and it solved my issue:
<html lang="en" suppressHydrationWarning={true}>
<body>
<QueryClientProvider>
<ThemeProvider>{children}</ThemeProvider>
</QueryClientProvider>
</body>
</html>