Welcome to the Kinde community.

P
K
A
A
A
Members
kisonay
k
kisonay
Offline, last seen 5 days ago
Joined September 30, 2024
I'm following along https://kinde.com/blog/engineering/kinde-with-supabase/ but my application is client side (no server side rendering.) Is it sill possible to use Kinde in this setup? It would be great if I could authenticate with Kinde and then just have the Supabase client work.

Any tips/suggestions would be appreciated.
7 comments
O
k
I've created a custom sign in form, and that works well, it collects an email and redirect to enter the OTP. I'm having trouble doing the same with sign up form. I'm using this code to invoke the sign up:

Plain Text
const { register } = useKindeAuth();
register({
      authUrlParams: {
        login_hint: username,
        connection_id: "conn_xxxx",
      },
    })


When the form is submitted, I'm brought to a page that indicates that a OTP was sent to the username, not the screen that requests that an email be entered. Am I missing something?
11 comments
k
C
I