From ee384bec3732b2cbb26d7ccf2ff2f832be7cd082 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Fri, 30 Jun 2023 16:45:08 -0700 Subject: [PATCH] refactor: account callback text --- store/account.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/store/account.ts b/store/account.ts index 33729081d..b8b63c1f7 100644 --- a/store/account.ts +++ b/store/account.ts @@ -137,8 +137,8 @@ export const useAccountStore = defineStore('account', () => { case 'success': return { text: accountAction.value?.type === 'signIn' - ? `Signed ${accountAction.value.user?.preferred_username} In Successfully` - : `Signed Out ${username.value} Successfully`, + ? `${accountAction.value.user?.preferred_username} Signed In Successfully` + : `${username.value} Signed Out Successfully`, }; case 'failed': return {