Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
koji-1009 committed Jan 5, 2022
1 parent d406c7d commit 01b929e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ private void startUi(@NonNull MethodCall call, @NonNull Result result) {
case "Apple":
providers.add(new AuthUI.IdpConfig.AppleBuilder().build());
break;
case "Github":
case "GitHub":
providers.add(new AuthUI.IdpConfig.GitHubBuilder().build());
break;
case "Microsoft":
Expand Down
2 changes: 1 addition & 1 deletion flutter_auth_ui/ios/Classes/SwiftFlutterAuthUiPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public class SwiftFlutterAuthUiPlugin: NSObject, FlutterPlugin, FUIAuthDelegate
if #available(iOS 13.0, *) {
providers.append(FUIOAuth.appleAuthProvider())
}
case "Github" :
case "GitHub" :
providers.append(FUIOAuth.githubAuthProvider())
case "Microsoft" :
providers.append(FUIOAuth.microsoftAuthProvider())
Expand Down
2 changes: 1 addition & 1 deletion flutter_auth_ui/lib/flutter_auth_ui.dart
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ extension _AuthUiProviderExt on AuthUiProvider {
case AuthUiProvider.apple:
return 'Apple';
case AuthUiProvider.github:
return 'Github';
return 'GitHub';
case AuthUiProvider.microsoft:
return 'Microsoft';
case AuthUiProvider.yahoo:
Expand Down

0 comments on commit 01b929e

Please sign in to comment.