From 6b2d75dd9ec84c349943052272cf9bb80e8b341c Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Thu, 29 Jun 2023 17:24:58 -0700 Subject: [PATCH] chore: callback feedback @todos --- components/UserProfile/CallbackFeedback.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/UserProfile/CallbackFeedback.vue b/components/UserProfile/CallbackFeedback.vue index c0d0b1c99..8a9fd237f 100644 --- a/components/UserProfile/CallbackFeedback.vue +++ b/components/UserProfile/CallbackFeedback.vue @@ -24,6 +24,10 @@ const { accountActionStatus, accountActionStatusCopy } = storeToRefs(accountStor const { callbackData, callbackStatus } = storeToRefs(callbackActionsStore); const { keyUrl, keyInstallStatus, keyInstallStatusCopy, keyType } = storeToRefs(installKeyStore); +/** @todo if post purchase/upgrade thank user for their purchase and support */ +/** @todo if post purchase/upgrade and no Connect, show CTA to Connect promo */ +/** @todo if signing in show CTA to head to Connect settings to enable features */ + const heading = computed(() => callbackStatus.value === 'loading' ? 'Performing actions' : 'Finished performing actions'); const subheading = computed(() => callbackStatus.value === 'loading' ? 'Please keep this window open' : '');