Next.js Discord

Discord Forum

Next with Supabase 404 Error in the Login site

Answered
Californian posted this in #help-forum
Open in Discord
CalifornianOP
In this project I am understanding various topics like CRUD, Authentication, RPC and Database Through which I am getting error in Login site and I not able to understand the error
Answered by B33fb0n3
you are trying to set an onClick event on your button. But interactivity (like clicks) is not supported in server components. So make it as 'use client' on top to use your function
View full answer

5 Replies

@Californian In this project I am understanding various topics like CRUD, Authentication, RPC and Database Through which I am getting error in Login site and I not able to understand the error
you are trying to set an onClick event on your button. But interactivity (like clicks) is not supported in server components. So make it as 'use client' on top to use your function
Answer
@B33fb0n3
happy to help