updates on the ui changes

This commit is contained in:
2026-07-08 18:42:56 +05:30
parent e8949e0b1a
commit 298fc603a0
44 changed files with 7062 additions and 4670 deletions

View File

@@ -39,7 +39,7 @@ export function toClient(raw) {
export function toUser(raw) {
const p = raw.payload ?? raw;
const id = p.id ?? raw.id;
const id = p.id ?? raw.id ?? p.uid ?? raw.uid ?? p.email;
return {
id,
name: p.first_name ? `${p.first_name} ${p.last_name || ''}`.trim() : (p.name || '—'),