From adfa17928d788ceac136c6905639c29f46945a81 Mon Sep 17 00:00:00 2001 From: Natalie Bunduwongse Date: Fri, 29 Mar 2024 13:09:56 +0700 Subject: [PATCH] refactor: reword create wallet to set up --- Assets/Shared/Scripts/UI/LevelCompleteScreen.cs | 2 +- Assets/Shared/Scripts/UI/SetupWalletScreen.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Assets/Shared/Scripts/UI/LevelCompleteScreen.cs b/Assets/Shared/Scripts/UI/LevelCompleteScreen.cs index b8cce9b4..328700df 100644 --- a/Assets/Shared/Scripts/UI/LevelCompleteScreen.cs +++ b/Assets/Shared/Scripts/UI/LevelCompleteScreen.cs @@ -144,7 +144,7 @@ private async void OnContinueWithPassportButtonClicked() // Show 'Next' button ShowNextButton(true); ShowLoading(false); - // Take the player to the Create Wallet screen + // Take the player to the Setup Wallet screen m_SetupWalletEvent.Raise(); } catch (Exception ex) diff --git a/Assets/Shared/Scripts/UI/SetupWalletScreen.cs b/Assets/Shared/Scripts/UI/SetupWalletScreen.cs index 6924d7b7..13a27153 100644 --- a/Assets/Shared/Scripts/UI/SetupWalletScreen.cs +++ b/Assets/Shared/Scripts/UI/SetupWalletScreen.cs @@ -66,8 +66,8 @@ private async void SetupWallet() } catch (Exception ex) { - // Failed to create wallet, let the player try again - Debug.Log($"Failed to create wallet: {ex.Message}"); + // Failed to set up wallet, let the player try again + Debug.Log($"Failed to set up wallet: {ex.Message}"); ShowLoading(false); ShowError(true); ShowSuccess(false);