From 361a01d86cc35521475f61641192bf2a2dd3c945 Mon Sep 17 00:00:00 2001 From: i701 Date: Sun, 13 Jul 2025 22:57:20 +0500 Subject: [PATCH] =?UTF-8?q?fix=20getProfile=20import=20in=20PaymentId=20?= =?UTF-8?q?=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/(dashboard)/payments/[paymentId]/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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";