From 6a3d69e1e881c69b755d25dee6273bf3eb3dcc45 Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev Date: Mon, 6 Apr 2026 11:29:23 +0700 Subject: [PATCH] Refine bonus account detail card --- app/components/bonus/AccountCard.vue | 99 +++++++++------------------- 1 file changed, 30 insertions(+), 69 deletions(-) diff --git a/app/components/bonus/AccountCard.vue b/app/components/bonus/AccountCard.vue index 21db0e7..a339fac 100644 --- a/app/components/bonus/AccountCard.vue +++ b/app/components/bonus/AccountCard.vue @@ -17,17 +17,11 @@ withDefaults(defineProps<{ email?: string; companyName?: string | null; balance: number; - avatarSrc?: string; - initials?: string; - compact?: boolean; stats?: BonusCardStat[]; sourceLinks?: BonusCardLink[]; }>(), { email: '', companyName: null, - avatarSrc: '', - initials: 'FR', - compact: false, stats: () => [], sourceLinks: () => [], }); @@ -41,73 +35,40 @@ function formatAmount(value: number) {