Profile saving works

This commit is contained in:
AG
2025-11-20 22:56:38 +02:00
parent 17ae81d5d9
commit 84417847fd
6 changed files with 39 additions and 11 deletions

View File

@@ -68,7 +68,7 @@ export interface UserProfile {
weight?: number;
height?: number;
gender?: 'MALE' | 'FEMALE' | 'OTHER';
birthDate?: number; // timestamp
birthDate?: number | string; // timestamp or ISO string
language?: Language;
}