Jonas

Results 8 comments of Jonas

I was facing the same issue. This solution works perfectly for me: /lib/auth/session.js ``` import { withIronSessionApiRoute, withIronSessionSsr } from "iron-session/next"; const sessionOptions = { cookieName: "userSession", password: process.env.SECRET_COOKIE_PASSWORD, cookieOptions:...

> Hi y'all, I found a workaorund for that is: not rendering `StyleSheetManager` in browser and directly render the `children` for the `StyledComponentsRegistry`. > > ```diff > function StyledComponentsRegistry({ children...

That is a known bug. You can find possible workarounds in the comments of this issue: https://github.com/chrishoermann/zod-prisma-types/issues/235

@crutchcorn I forked the Stackblitz example from [this page](https://houseform.dev/introduction.html#interactive-example) and made the following changes: - Updated houseform dependency, which was still on 1.2.0 - Added array field - That array...

Did you find a fix for this? Edit: Apparently there is a fix for it, but the PR hasn't been reviewed yet. https://github.com/wevm/vocs/pull/128

Wanted to start using Vocs. Unfortunately this bug is blocking me too.

Facing the same type issue when deploying a project to Vercel. Interestingly, I couldn't observe the type error looking at the example using Stackblitz.

Steam uses an old OpenID 2.0 spec which is not supported by arctic. Instead you can use the [Lucia guide](https://lucia-auth.com/) to implement a session API and, using that code, implement...