MED-151: add profile view and working smoking dashboard card (#71)
* MED-151: add profile view and working smoking dashboard card * update zod * move some components to shared * move some components to shared * remove console.logs * remove unused password form components * only check null for variant * use pathsconfig
This commit is contained in:
@@ -14,6 +14,7 @@ const PathsSchema = z.object({
|
||||
}),
|
||||
app: z.object({
|
||||
home: z.string().min(1),
|
||||
cart: z.string().min(1),
|
||||
selectPackage: z.string().min(1),
|
||||
booking: z.string().min(1),
|
||||
bookingHandle: z.string().min(1),
|
||||
@@ -23,6 +24,8 @@ const PathsSchema = z.object({
|
||||
orderAnalysis: z.string().min(1),
|
||||
orderHealthAnalysis: z.string().min(1),
|
||||
personalAccountSettings: z.string().min(1),
|
||||
personalAccountPreferences: z.string().min(1),
|
||||
personalAccountSecurity: z.string().min(1),
|
||||
personalAccountBilling: z.string().min(1),
|
||||
personalAccountBillingReturn: z.string().min(1),
|
||||
accountHome: z.string().min(1),
|
||||
@@ -54,7 +57,10 @@ const pathsConfig = PathsSchema.parse({
|
||||
},
|
||||
app: {
|
||||
home: '/home',
|
||||
cart: '/home/cart',
|
||||
personalAccountSettings: '/home/settings',
|
||||
personalAccountPreferences: '/home/settings/preferences',
|
||||
personalAccountSecurity: '/home/settings/security',
|
||||
personalAccountBilling: '/home/billing',
|
||||
personalAccountBillingReturn: '/home/billing/return',
|
||||
accountHome: '/home/[account]',
|
||||
|
||||
Reference in New Issue
Block a user