Skip to content

Commit

Permalink
fix: rename password field to rawPassword in AuthRepository for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAnyx committed Jan 2, 2025
1 parent 177cb82 commit 219ae02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repositories/AuthRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class AuthRepository extends AbstractRepository
method: "POST",
body: {
token: authData.token,
password: authData.password,
rawPassword: authData.password,
}
});
};
Expand Down

0 comments on commit 219ae02

Please sign in to comment.