supabase-community / auth-ui

Pre-built Auth UI for React
https://supabase.com/docs/guides/auth/auth-helpers/auth-ui
MIT License
478 stars 120 forks source link

No way to add user meta data with the `Auth` component #168

Closed wcardosodev closed 1 year ago

wcardosodev commented 1 year ago

Bug report

Describe the bug

There currently is no way of adding user meta data when using the Auth component similar to how you can via the client.auth.signUp function with code like:

supabase.auth.signUp({
        email,
        password,
        options: {
          data: {
            first_name: 'Will',
            age: 10
          }
        }
      })

Expected behavior

The ability to add meta data similar to the above example but using the Auth component.