chore: fix typo

This commit is contained in:
Steven 2022-09-17 13:33:03 +08:00
parent 0a5cc92a22
commit b5dca77fbc
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ const UserDetail: React.FC = () => {
onConfirm: async () => { onConfirm: async () => {
await userService.patchUser({ await userService.patchUser({
id: user?.id as UserId, id: user?.id as UserId,
resetOpenID: true, resetOpenId: true,
}); });
}, },
}); });

View File

@ -25,7 +25,7 @@ interface UserPatch {
name?: string; name?: string;
password?: string; password?: string;
resetOpenID?: boolean; resetOpenId?: boolean;
} }
interface UserDelete { interface UserDelete {