Added PaymentFailed Route

This commit is contained in:
PascalMarchesseault
2025-01-03 16:34:48 -05:00
parent 9a71a3f8df
commit 0572dfbce5

View File

@@ -21,7 +21,8 @@ import TermsAndConditions from '@/views/documentation/TermsAndConditions.vue';
import ProfilePage from '@/views/profile/ProfilePage.vue';
import { createRouter, createWebHistory } from 'vue-router';
import LoginView from '../views/LoginView.vue';
import PaymentCompleted from '../views/PayementCompleted.vue';
import PaymentCompleted from '../views/PaymentCompleted.vue';
import PaymentFailed from "@/views/PaymentFailed.vue";
import Home from '../views/main/Home.vue';
import Wallet from '../views/main/Wallet.vue';
@@ -139,6 +140,13 @@ const routes = [
component: PaymentCompleted,
},
{
path: '/paymentfailed',
name: 'PaymentFailed',
component: PaymentFailed,
},
{
path: '/wallet',