diff --git a/app/(dashboard)/payments/[paymentId]/page.tsx b/app/(dashboard)/payments/[paymentId]/page.tsx index 0325036..55aca19 100644 --- a/app/(dashboard)/payments/[paymentId]/page.tsx +++ b/app/(dashboard)/payments/[paymentId]/page.tsx @@ -1,5 +1,6 @@ import { redirect } from "next/navigation"; -import { getPayment, getProfile } from "@/actions/payment"; +import { getPayment } from "@/actions/payment"; +import { getProfile } from "@/actions/user-actions"; import CancelPaymentButton from "@/components/billing/cancel-payment-button"; import ExpiryCountDown from "@/components/billing/expiry-time-countdown"; import ClientErrorMessage from "@/components/client-error-message";