main
fix profile
This commit is contained in:
parent
8d456c5d0a
commit
c444df7999
@ -20,9 +20,6 @@ export default function SubscriptionsList({
|
|||||||
if (subscriptions?.length === 0) {
|
if (subscriptions?.length === 0) {
|
||||||
return (
|
return (
|
||||||
<div className={styles.container}>
|
<div className={styles.container}>
|
||||||
<Typography as="h1" className={styles.title}>
|
|
||||||
{t("title")}
|
|
||||||
</Typography>
|
|
||||||
<Typography as="p" className={styles.description}>
|
<Typography as="p" className={styles.description}>
|
||||||
{t("no_subscriptions")}
|
{t("no_subscriptions")}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|||||||
@ -47,12 +47,12 @@ export const UserSchema = z.object({
|
|||||||
timezone: z.string(),
|
timezone: z.string(),
|
||||||
source: z.string(),
|
source: z.string(),
|
||||||
sign: z.boolean(),
|
sign: z.boolean(),
|
||||||
signDate: z.string(),
|
signDate: z.string().nullable().optional(),
|
||||||
password: z.string(),
|
password: z.string(),
|
||||||
externalId: z.string(),
|
externalId: z.string(),
|
||||||
klaviyoId: z.string(),
|
klaviyoId: z.string(),
|
||||||
assistants: z.array(z.string()),
|
assistants: z.array(z.string()),
|
||||||
createdAt: z.string(),
|
createdAt: z.string().optional(),
|
||||||
updatedAt: z.string(),
|
updatedAt: z.string(),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user