From c11a468fea09d0500ff6857e455bd15d212d249c Mon Sep 17 00:00:00 2001 From: nate contino Date: Fri, 2 Oct 2020 11:56:09 -0600 Subject: [PATCH] emailPasswordAuth -> emailPassword refactor Missed once occurrence of emailPasswordAuth in the beta 8 refactor. Updating it here. --- source/includes/steps-tutorial-android-kotlin.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/includes/steps-tutorial-android-kotlin.yaml b/source/includes/steps-tutorial-android-kotlin.yaml index a8e0bad9ff..1b0fc59c31 100644 --- a/source/includes/steps-tutorial-android-kotlin.yaml +++ b/source/includes/steps-tutorial-android-kotlin.yaml @@ -800,7 +800,7 @@ content: | if (createUser) { // register a user using the Realm App we created in the TaskTracker class - taskApp.emailPasswordAuth.registerUserAsync(username, password) { + taskApp.emailPassword.registerUserAsync(username, password) { // re-enable the buttons after user registration completes createUserButton.isEnabled = true loginButton.isEnabled = true