From 0b7829be8b38778c16a2d14b863e3c07716b5eae Mon Sep 17 00:00:00 2001 From: Danel Kungla Date: Mon, 15 Sep 2025 19:03:59 +0300 Subject: [PATCH] weight and height default values to null --- app/auth/update-account/page.tsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/app/auth/update-account/page.tsx b/app/auth/update-account/page.tsx index 031120c..2d1943d 100644 --- a/app/auth/update-account/page.tsx +++ b/app/auth/update-account/page.tsx @@ -1,5 +1,6 @@ import { redirect } from 'next/navigation'; +import { loadCurrentUserAccount } from '@/app/home/(user)/_lib/server/load-user-account'; import { signOutAction } from '@/lib/actions/sign-out'; import { BackButton } from '@kit/shared/components/back-button'; @@ -8,10 +9,9 @@ import { pathsConfig } from '@kit/shared/config'; import { Trans } from '@kit/ui/trans'; import { withI18n } from '~/lib/i18n/with-i18n'; +import { toTitleCase } from '~/lib/utils'; import { UpdateAccountForm } from './_components/update-account-form'; -import { loadCurrentUserAccount } from '@/app/home/(user)/_lib/server/load-user-account'; -import { toTitleCase } from '~/lib/utils'; async function UpdateAccount() { const { account, user } = await loadCurrentUserAccount(); @@ -35,14 +35,14 @@ async function UpdateAccount() { })(), phone: account?.phone ?? '+372', city: account?.city ?? '', - weight: account?.accountParams?.weight ?? 0, - height: account?.accountParams?.height ?? 0, + weight: account?.accountParams?.weight ?? null, + height: account?.accountParams?.height ?? null, userConsent: account?.has_consent_personal_data ?? false, }; return (
-
+

@@ -51,7 +51,10 @@ async function UpdateAccount() {

- +