Fix TypeScript error - add hasPassword to User interface

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Manohar Gupta 2026-05-16 15:06:58 +05:30
parent 752924a323
commit 0349be2067

View file

@ -11,6 +11,7 @@ interface User {
familyName: string; familyName: string;
createdAt: string; createdAt: string;
memberId?: string; memberId?: string;
hasPassword?: boolean;
} }
interface Family { interface Family {