From 10ab864a435dbd5c50d9352e3da99bb4710b4f5d Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Thu, 28 Sep 2023 13:07:08 -0700 Subject: [PATCH] refactor(web): ReplaceCheck status feedback --- web/components/Registration/ReplaceCheck.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/Registration/ReplaceCheck.vue b/web/components/Registration/ReplaceCheck.vue index 06e8c73e1..c662937c7 100644 --- a/web/components/Registration/ReplaceCheck.vue +++ b/web/components/Registration/ReplaceCheck.vue @@ -24,7 +24,7 @@ defineProps<{ @click="replaceCheckStore.check" :disabled="status !== 'ready'" :icon="status === 'checking' ? BrandLoadingWhite : KeyIcon" - :text="t('Check Eligibility')" + :text="status === 'checking' ? t('Checking…') : t('Check Eligibility')" class="flex-grow" />