refactor: update price plan references to use new price-config file

This commit is contained in:
javayhu 2025-04-19 13:40:21 +08:00
parent c6b0b260ef
commit 689b9b7926
3 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
'use client';
import { ToggleGroup, ToggleGroupItem } from '@/components/ui/toggle-group';
import { getPricePlans } from '@/config/payment-config';
import { getPricePlans } from '@/config/price-config';
import { cn } from '@/lib/utils';
import {
PaymentTypes,

View File

@ -12,7 +12,7 @@ import {
CardTitle,
} from '@/components/ui/card';
import { Skeleton } from '@/components/ui/skeleton';
import { getPricePlans } from '@/config/payment-config';
import { getPricePlans } from '@/config/price-config';
import { usePayment } from '@/hooks/use-payment';
import { LocaleLink } from '@/i18n/navigation';
import { authClient } from '@/lib/auth-client';