"make avatar mandatory and add collectionId to User interface"

This commit is contained in:
louiscklaw
2025-05-11 16:30:50 +08:00
parent 7ece1c814b
commit ec12ca3bdf

View File

@@ -1,8 +1,10 @@
export interface User {
id: string;
name?: string;
avatar?: string;
avatar: string;
email?: string;
collectionId: string;
[key: string]: unknown;
}