Hello,
I’m trying to figure out how to display auth user data.
Userflow :
Auth user login w/ email & password
Auth user navigates to page [private access] page called dashboard
On the dashboard page I have text that should display the auth users email. I’m attaching screenshots below to show what i’ve done so far which isn’t working.
You actually might want to bind it directly to the text (without binding it to the User Email container). You just bind the Supabase Auth - ['user'].email
to the Text. The thing is, that you’re binding a non array value Supabase Auth - ['user']
to a div, which expects an array.
@Alexis it seems like the checks are wrong with the binding? As the validation (expected format) should’ve been red and signaling inproper binding?