Skip to content

Commit

Permalink
fix: #12543, use PATCH
Browse files Browse the repository at this point in the history
  • Loading branch information
barisusakli committed May 3, 2024
1 parent 8a1b281 commit 420c899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/src/modules/api.js
Expand Up @@ -112,7 +112,7 @@ export function post(route, data, onSuccess) {
export function patch(route, data, onSuccess) {
return call({
url: route,
method: 'patch',
method: 'PATCH',
data,
headers: {
'x-csrf-token': config.csrf_token,
Expand Down

0 comments on commit 420c899

Please sign in to comment.