James
James
@nuclearspike I like your use of context and I'm currently trying to implement in the same way in a single page app. However, when trying to call addNotification from the...
Saw the same thing, landed here https://github.com/gregberge/svgr/issues/860
Manually installing @react-email/render per @aadamw's fixed it for me as well ```bash npm i @react-email/render ``` I'm on: ```json "dependencies": { "@react-email/components": "0.0.12", "@react-email/render": "^0.0.10", "react-email": "1.10.0", "resend": "2.0.0", }...
This solution works great, but what if I need my `not-found.js` route to force a theme? Should that be the default cause in the switch statement? But then I would...
I get this error when trying to use a client component that accepts a render function from a server component. Do I need to turn my server component into a...
Looks like the issue is with `notion-code`: 
Found this [similar issue ](https://github.com/NotionX/react-notion-x/issues/62)
Removing the code block, there's another hydration issue regarding `style` in the collection block: 
Update — removing the Code Block and Collection Blocks stops the hydration errors
Here's a utility component I wrote for client-only hooks: ```tsx "use client"; import { useIsClient } from "@uidotdev/usehooks"; const ClientOnly = ({ children, placeholder, }: { children: React.ReactNode; placeholder?: React.ReactNode;...