feat(webapp): deprecate the subscription from webapp.

This commit is contained in:
a.bouhuolia
2023-03-05 13:21:06 +02:00
parent 0c1bf302e5
commit f26ced97fe
15 changed files with 118 additions and 228 deletions

View File

@@ -1,23 +0,0 @@
// @ts-nocheck
import LazyLoader from '@/components/LazyLoader';
export default [
{
path: '/register/subscription',
component: LazyLoader({
loader: () => import('@/containers/Authentication/Register/RegisterSubscriptionForm'),
}),
},
{
path: '/register/organization',
component: LazyLoader({
loader: () => import('@/containers/Authentication/Register/RegisterOrganizationForm'),
}),
},
{
path: `/`,
component: LazyLoader({
loader: () => import('@/containers/Authentication/Register/RegisterUserForm'),
}),
},
];