Skip to content

Commit

Permalink
docs(Auth0): reordered requested scopes to place FULL_NAME first (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
piersonmarks authored Nov 4, 2023
1 parent 029ce50 commit b593f02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Auth0.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default async function AppleAuthentication() {
const appleAuthRequestResponse = await appleAuth.performRequest({
nonceEnabled: false,
requestedOperation: appleAuth.Operation.LOGIN,
requestedScopes: [appleAuth.Scope.EMAIL, appleAuth.Scope.FULL_NAME]
requestedScopes: [appleAuth.Scope.FULL_NAME, appleAuth.Scope.EMAIL]
});

const credentialState = await appleAuth.getCredentialStateForUser(
Expand Down

0 comments on commit b593f02

Please sign in to comment.