Jeroen

Results 26 comments of Jeroen

I you as me are using a viewport element outside of the regular "flow", also add these handlers over there: ``` event.preventDefault()} onPointerLeave={event => event.preventDefault()} /> ```

I wrote this utility function, hopefully it could be of help to someone: ``` const isRichTextConfigured = (document: SBrichtext) => { if (document.content) { for (const item of document.content) {...

Our Storyblok setup is a bit exotic which means that without using resolve_links=story (which I don't want to use right now) I am not able to find a localized version...

Yea I can imagine, for now it's fine. I asked copilot to generate me a transform function and it worked first time :D Now I can just pass my transformed...

> Example use case. This will fail if fetch redirect because the SSO server is on another domain (CORS). @ryanelian in my case I am using useRouter.push to redirect to...

> > @chandlervdw how did you manage to solve this? > > @Jdruwe I made a new fetch function that was specifically for `generateStaticParams` that didn’t reference `draftMode()` Yea, thanks...