From 9d7bf266fd9ee3d1c238524117db12ae983aff57 Mon Sep 17 00:00:00 2001 From: Antonio Andre Date: Thu, 28 May 2026 17:51:19 -0500 Subject: [PATCH] fix: corrige URL de giftcards --- app/pages/(protected)/gift-card/index.vue | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/app/pages/(protected)/gift-card/index.vue b/app/pages/(protected)/gift-card/index.vue index 364a409..1247778 100644 --- a/app/pages/(protected)/gift-card/index.vue +++ b/app/pages/(protected)/gift-card/index.vue @@ -152,13 +152,11 @@
{{ formatCurrency(card.balance) }} - {{ card.is_active ? 'Ativo' : 'Inativo' }} - @@ -188,8 +186,7 @@ definePageMeta({ middleware: 'auth' }) -const config = useRuntimeConfig() -const GIFT_CARD_API_BASE_URL = config.public.giftCardApiUrl +const GIFT_CARD_API_BASE_URL = 'https://giftcardapipedro-production.up.railway.app/api' const { $toast } = useNuxtApp()