update order details view, translations

This commit is contained in:
2025-09-10 06:34:18 +03:00
parent fa0bbe64fb
commit b8a8eab87c
10 changed files with 56 additions and 35 deletions

View File

@@ -9,8 +9,8 @@ export interface AccountSubmitData {
email: string;
phone?: string;
city?: string;
weight: number | null;
height: number | null;
weight?: number | null | undefined;
height?: number | null | undefined;
userConsent: boolean;
}