diff --git a/src/components/widgets/Horoscope/Horoscope.tsx b/src/components/widgets/Horoscope/Horoscope.tsx index 01e5697..a4a7d54 100644 --- a/src/components/widgets/Horoscope/Horoscope.tsx +++ b/src/components/widgets/Horoscope/Horoscope.tsx @@ -20,7 +20,8 @@ const HOROSCOPE_TEXT = { today: "Trust your instincts — they’ll help you navigate a small but unexpected challenge. A kind gesture or uplifting message may come your way, reminding you of your deeper connections. Make time this evening to unwind and recharge, even if just for a little while.", week: "This week brings subtle shifts. Something you’ve been waiting for might finally begin to move — slowly, but in the right direction. Stay grounded when things feel uncertain, and don’t ignore the small signs around you. They’re pointing you where you need to go. By the weekend, clarity begins to settle in..", - month: "A period of quiet transformation is unfolding. You may find yourself rethinking certain priorities or discovering a new sense of purpose in familiar routines. There’s no rush — let things evolve naturally. Conversations that happen mid-month could carry more meaning than they seem at first. Listen closely.", + month: + "A period of quiet transformation is unfolding. You may find yourself rethinking certain priorities or discovering a new sense of purpose in familiar routines. There’s no rush — let things evolve naturally. Conversations that happen mid-month could carry more meaning than they seem at first. Listen closely.", year: "The year ahead holds both growth and gentle reminders of what truly matters. There may be moments when you’re pulled in many directions, but your inner compass will remain strong — trust it. You’ll build something meaningful this year, even if it takes time. Stay open, stay curious, and stay kind to yourself along the way.", }; diff --git a/src/entities/user/types.ts b/src/entities/user/types.ts index b5c23bb..99b1513 100644 --- a/src/entities/user/types.ts +++ b/src/entities/user/types.ts @@ -25,9 +25,11 @@ const ProfileSchema = z.object({ const PartnerSchema = z .object({ - birthplace: z.object({ - address: z.string(), - }), + birthplace: z + .object({ + address: z.string(), + }) + .optional(), birthdate: z.string(), gender: z.string(), age: z.number(), diff --git a/src/shared/constants/navigation.tsx b/src/shared/constants/navigation.tsx index 59e7e49..7015c26 100644 --- a/src/shared/constants/navigation.tsx +++ b/src/shared/constants/navigation.tsx @@ -17,13 +17,13 @@ export const navItems: NavItem[] = [ icon: IconName.Home, href: ROUTES.home(), }, - { - key: "chat", - label: "Chat", - icon: IconName.Chat, - href: ROUTES.chat(), - badge: 12, - }, + // { + // key: "chat", + // label: "Chat", + // icon: IconName.Chat, + // href: ROUTES.chat(), + // badge: 12, + // }, { key: "advisers", label: "Advi...",