Hugo Tiger
Hugo Tiger
We're facing some issues similar to this when rendering within an iframe. Our current problem is that the `Dialog.Portal` is rendering within the root document instead of in the nearest...
Here's the solution we went with: ```tsx import * as DialogPrimitive from '@radix-ui/react-dialog' import { useState } from 'react' import { useSafeLayoutEffect } from '../../../hooks/use-safe-layout-effect' type DialogPortalProps = { children:...
Thanks for the quick reply! Hmmm I'm torn here. On one hand handling loose strings isn't great... But at the same time I think it makes sense to support the...
Hi again! Been quite busy, but I've now finally opened a [discussion in the Next.js repo](https://github.com/vercel/next.js/discussions/80629) regarding this! Feel free to chime in if you have any thoughts/feedback 😄
Hey @amannn! After talking to Vercel they clarified that the `usePathname` function with rewrites will cause hydration errors by default. It's mentioned under "good to know" [here](https://nextjs.org/docs/app/api-reference/functions/use-pathname). I suppose a...
Also @amannn let me know if it sounds like a good idea and you want me to create a PR for it!
Oh interesting @amannn! I'll try to create a minimal reproduction or a failing test case. What's the most suitable example app to add the test case? It needs to use...
I set up a reproduction now and opened an issue in the `next-intl` repo instead: https://github.com/amannn/next-intl/issues/2011