Skip to content

Commit

Permalink
4.17.2 (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-ptera authored Nov 14, 2024
1 parent 39d7d4f commit b76af6f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## v4.17.2 (November 14, 2024)

### Changed

- Changed message signing contract from POST to PUT request.

## v4.17.1 (November 3, 2024)

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thebananostand",
"version": "4.17.1",
"version": "4.17.2",
"scripts": {
"ng": "ng",
"start": "ng serve --open --host 0.0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/sign-message/sign-message.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export class SignMessageComponent {
}
const headers = new HttpHeaders({ 'Content-Type': 'application/json' });
this.submitRequested = true;
this._http.put(submitUrl, params, { headers: headers }).subscribe(
this._http.post(submitUrl, params, { headers: headers }).subscribe(
(data) => {
if (typeof data !== 'object') {
this.successfulSubmit = false;
Expand Down

0 comments on commit b76af6f

Please sign in to comment.