Skip to content

Commit

Permalink
Fix typos (#10361)
Browse files Browse the repository at this point in the history
* Fix typos

https://auth0team.atlassian.net/jira/servicedesk/projects/DR/issues/DR-2050?filter=allissues

Minor edit to the ClientID.

From 

ClientId = "${account.namespace}",

To

ClientId = "${account.clientId}",
---------

Co-authored-by: Frederik Prijck <frederik.prijck@auth0.com>
  • Loading branch information
BcnCarlos and frederikprijck authored Jan 24, 2024
1 parent 61a53bc commit bacd1d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion articles/quickstart/native/maui/interactive.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ using Auth0.OidcClient;
var client = new Auth0Client(new Auth0ClientOptions
{
Domain = "${account.namespace}",
ClientId = "${account.namespace}",
ClientId = "${account.clientId}",
RedirectUri = "myapp://callback",
PostLogoutRedirectUri = "myapp://callback",
Scope = "openid profile email"
Expand Down

0 comments on commit bacd1d7

Please sign in to comment.