From f240ecaaffe04c43af6d16a48f2d88b912d9db9c Mon Sep 17 00:00:00 2001 From: Simula_r <18093452+simula-r@users.noreply.github.com> Date: Fri, 9 Jan 2026 15:40:25 -0800 Subject: [PATCH] fix: UX nits and styles (#7933) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary - Fix UX nits ## Screenshots https://github.com/user-attachments/assets/f224a710-5cfd-4aad-a617-20ec56a37370 ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7933-fix-UX-nits-and-styles-2e36d73d365081379a48e1030b7d4340) by [Unito](https://www.unito.io) --- .../content/TopUpCreditsDialogContent.vue | 15 ++++++++------- .../ui/stepper/FormattedNumberStepper.vue | 17 +++++++++++------ src/locales/en/main.json | 2 ++ 3 files changed, 21 insertions(+), 13 deletions(-) diff --git a/src/components/dialog/content/TopUpCreditsDialogContent.vue b/src/components/dialog/content/TopUpCreditsDialogContent.vue index 0a2884daf..4867e7a39 100644 --- a/src/components/dialog/content/TopUpCreditsDialogContent.vue +++ b/src/components/dialog/content/TopUpCreditsDialogContent.vue @@ -95,22 +95,23 @@

+ {{ - $t('credits.topUp.minimumPurchase', { - amount: MIN_AMOUNT, - credits: usdToCredits(MIN_AMOUNT) + $t('credits.topUp.minRequired', { + credits: formatNumber(usdToCredits(MIN_AMOUNT)) }) }}

+ {{ - $t('credits.topUp.maximumAmount', { - amount: formatNumber(MAX_AMOUNT) + $t('credits.topUp.maxAllowed', { + credits: formatNumber(usdToCredits(MAX_AMOUNT)) }) }} {{ $t('credits.topUp.needMore') }} diff --git a/src/components/ui/stepper/FormattedNumberStepper.vue b/src/components/ui/stepper/FormattedNumberStepper.vue index ab8a6bf1e..2de6bbf13 100644 --- a/src/components/ui/stepper/FormattedNumberStepper.vue +++ b/src/components/ui/stepper/FormattedNumberStepper.vue @@ -1,8 +1,9 @@