rename username parameter to userId

This commit is contained in:
Zamitto
2024-06-16 19:51:09 -03:00
parent 05cb66f2a4
commit d048d562a3
6 changed files with 9 additions and 9 deletions

View File

@@ -117,7 +117,7 @@ declare global {
onSignOut: (cb: () => void) => () => Electron.IpcRenderer;
/* User */
getUser: (username: string) => Promise<UserProfile | null>;
getUser: (userId: string) => Promise<UserProfile | null>;
/* Profile */
getMe: () => Promise<UserProfile | null>;