From 16b766477bd5cf11708eab6f0b2fb3ba35f4b392 Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 24 Mar 2024 14:40:46 +0100 Subject: [PATCH] in dev --- src/Pages/PaymentPlan/index.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Pages/PaymentPlan/index.js b/src/Pages/PaymentPlan/index.js index 108cae1..53cc5be 100644 --- a/src/Pages/PaymentPlan/index.js +++ b/src/Pages/PaymentPlan/index.js @@ -4,6 +4,7 @@ import { myFetch, showUnkownErrorNotification } from "../../utils"; import { useTranslation } from "react-i18next"; import { CreditCardOutlined } from "@ant-design/icons"; import { useState } from "react"; +import PageInDevelopment from "../PageInDevelopment"; // import { ChoosenProduct } from "../Authentication/SignUp"; export default function PaymentPlan() { @@ -16,7 +17,12 @@ export default function PaymentPlan() { const [isRequestingBillingDetails, setIsRequestingBillingDetails] = useState(false); - return <>{notificationContextHolder}; + return ( + <> + {notificationContextHolder} + + + ); } /*