fix issue prod deployment

This commit is contained in:
root
2026-05-25 19:46:14 -04:00
parent 3680c5d5f2
commit 2ffbc203e0
9 changed files with 71 additions and 8 deletions
@@ -2,7 +2,7 @@
import { useEffect, useMemo, useState } from 'react'
import Link from 'next/link'
import { formatCurrency } from '@rentaldrivego/types'
import { formatCurrency, SupportedCurrency } from '@rentaldrivego/types'
import { apiFetch } from '@/lib/api'
import { useDashboardI18n } from '@/components/I18nProvider'
@@ -25,7 +25,7 @@ type PaymentRow = {
id: string
reservationId: string
amount: number
currency: string
currency: SupportedCurrency
status: string
type: 'CHARGE' | 'DEPOSIT'
paymentProvider: 'AMANPAY' | 'PAYPAL'