How can I change the Auth text on the sign-in button?

I'm using Auth from @supabase/auth-ui-react and would like to change the text from 'Sign in with Discord' to like 'Login'.
Thank you always.
import { useSupabaseClient } from '@supabase/auth-helpers-react'
import { Auth } from '@supabase/auth-ui-react'

export const LoginButton = () => {
  const supabase = useSupabaseClient()

  return (
    <>
      <Auth
        supabaseClient={supabase}
        providers={['discord']}
        onlyThirdPartyProviders={true}
      />
    </>
  )
}
2022-11-21_19.32.55.png
Was this page helpful?