From 3cb9c191dcfc944f87014ba984a1aa91fa84a168 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isaque=20B=C3=B6ck?= Date: Mon, 27 Apr 2026 16:08:11 -0300 Subject: [PATCH 1/2] feat: adjust lint --- .../src/components/pricing-card/pricing-card.vue | 4 +--- .../webkit/src/components/site/button/button.vue | 13 +++++-------- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/packages/webkit/src/components/pricing-card/pricing-card.vue b/packages/webkit/src/components/pricing-card/pricing-card.vue index fde34198..8d2231dd 100644 --- a/packages/webkit/src/components/pricing-card/pricing-card.vue +++ b/packages/webkit/src/components/pricing-card/pricing-card.vue @@ -69,9 +69,7 @@ const normalizedCurrentPrice = computed(() => currentPrice.value || '') - const currentPeriodSuffix = computed(() => - props.currentPeriod === 'annual' ? '/yr' : '/mo' - ) + const currentPeriodSuffix = computed(() => (props.currentPeriod === 'annual' ? '/yr' : '/mo'))