Skip to content

Commit 2f95eb9

Browse files
authored
Fixing a typo in Custom Layout (#1751)
1 parent 4b06d16 commit 2f95eb9

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

auth/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -786,11 +786,12 @@ AuthMethodPickerLayout customLayout = new AuthMethodPickerLayout
786786
// ...
787787
.setTosAndPrivacyPolicyId(R.id.baz)
788788
.build();
789-
790-
AuthUI.getInstance(this).createSignInIntentBuilder()
791-
// ...
792-
.setAuthMethodPickerLayout(customLayout)
793-
.build());
789+
790+
startActivityForResult(
791+
AuthUI.getInstance(this).createSignInIntentBuilder()
792+
// ...
793+
.setAuthMethodPickerLayout(customLayout)
794+
.build());
794795
```
795796

796797
### Strings

0 commit comments

Comments
 (0)