From 89b334e17afa6e2df20650ede440bf6784c600b8 Mon Sep 17 00:00:00 2001 From: karthikalakshmi Date: Mon, 16 Feb 2026 18:20:19 +0530 Subject: [PATCH] FIX #149 Redirect name issue --- src/Pages/BookingScreen/Template/PlanExpireNotification.jsx | 2 +- src/Pages/ExtentedModal/ExtendSubscriptionModal.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Pages/BookingScreen/Template/PlanExpireNotification.jsx b/src/Pages/BookingScreen/Template/PlanExpireNotification.jsx index a4d8543..505eee1 100644 --- a/src/Pages/BookingScreen/Template/PlanExpireNotification.jsx +++ b/src/Pages/BookingScreen/Template/PlanExpireNotification.jsx @@ -126,7 +126,7 @@ const PlanExpireNotification = () => { const res = await dispatch(PublicQrCodepost(postData)).unwrap(); // navigate(`${commonDirectory}invoice-details`); if (res?.data?.statusCode == 1) { - navigate(`${commonDirectory}invoice-details/${res?.data?.ReferenceNo}`); + navigate(`${commonDirectory}invoice-detail/${res?.data?.ReferenceNo}`); setExtendModel(false); } } catch (error) { diff --git a/src/Pages/ExtentedModal/ExtendSubscriptionModal.jsx b/src/Pages/ExtentedModal/ExtendSubscriptionModal.jsx index b16c116..83a386e 100644 --- a/src/Pages/ExtentedModal/ExtendSubscriptionModal.jsx +++ b/src/Pages/ExtentedModal/ExtendSubscriptionModal.jsx @@ -113,7 +113,7 @@ const ExtendSubscriptionModal = ({ const res = await dispatch(PublicQrCodepost(postData)).unwrap(); // navigate(`${commonDirectory}invoice-details`); if (res?.data?.statusCode == 1) { - navigate(`${commonDirectory}invoice-details/${res?.data?.ReferenceNo}`); + navigate(`${commonDirectory}invoice-detail/${res?.data?.ReferenceNo}`); setExtendModel(false) }