Skip to content

Commit

Permalink
Merge pull request #1187 from ORCID/fix-password-reset
Browse files Browse the repository at this point in the history
fix password reset
  • Loading branch information
bobcaprice authored May 16, 2024
2 parents e472af6 + 0bd3fcb commit 98bf92e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/account/service/password.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class PasswordService {
}

savePassword(key: string, newPassword: string): Observable<any> {
return this.http.post('/services/userservice/api/account/reset-password/finish', {key, newPassword:"a"})
return this.http.post('/services/userservice/api/account/reset-password/finish', { key, newPassword })
}

validateKey(key: any): Observable<KeyValidationResult> {
Expand Down

0 comments on commit 98bf92e

Please sign in to comment.