feat: adding modal to edit profile

This commit is contained in:
Zamitto
2024-06-17 21:55:43 -03:00
parent 79ca354da1
commit af69509c61
9 changed files with 219 additions and 7 deletions

View File

@@ -121,6 +121,10 @@ declare global {
/* Profile */
getMe: () => Promise<UserProfile | null>;
updateProfile: (
displayName: string,
newProfileImagePath: string | null
) => Promise<void>;
}
interface Window {