fix: minor changes

feat: invoice waiting page
This commit is contained in:
2025-06-02 12:22:10 +05:30
parent 9e39a1f9a1
commit 344d5792ed
10 changed files with 522 additions and 79 deletions
+3 -1
View File
@@ -16,6 +16,7 @@ import ClinicDocUpdater from "../views/ClinicDocUpdate";
import ForgotPassword from "../views/ForgotPassword";
import ResetPassword from "../views/ResetPassword";
import SignupCharges from "../views/SignupCharges";
import PaymentSuccessPage from "../views/WaitingPage";
export const routesData = [
{
@@ -51,9 +52,10 @@ export const routesData = [
component: ForgotPassword,
},
{
path: 'reset-password',
path: "reset-password",
component: ResetPassword,
},
{ path: "waiting", component: PaymentSuccessPage },
],
},
];