Skip to content

Commit

Permalink
Use correct platformName
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck committed Oct 16, 2023
1 parent aa6da0e commit f31e854
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Auth0.OidcClient.MAUI/Auth0Client.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Auth0.OidcClient;
namespace Auth0.OidcClient;

/// <summary>
/// Primary class for performing authentication and authorization operations with Auth0 using the
Expand All @@ -11,7 +11,7 @@ public class Auth0Client : Auth0ClientBase
/// </summary>
/// <param name="options">The <see cref="Auth0ClientOptions"/> specifying the configuration for the Auth0 OIDC Client.</param>
public Auth0Client(Auth0ClientOptions options)
: base(options, "xamarin-maui")
: base(options, "maui")
{
options.Browser = options.Browser ?? new WebAuthenticatorBrowser();
}
Expand Down

0 comments on commit f31e854

Please sign in to comment.