Skip to content

Commit

Permalink
fix: removes redundant api request parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
selul committed Apr 10, 2019
1 parent 2e47fe0 commit 4385f68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/vue/store/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ const removeWatermark = function ( {commit, state}, data ) {
url: optimoleDashboardApp.root + '/remove_watermark',
method: 'POST',
headers: {'X-WP-Nonce': optimoleDashboardApp.nonce},
params: {'req': 'Get Watermarks' , 'postID': data.postID },
params: { 'postID': data.postID },
responseType: 'json',
} ).then( function ( response ) {

Expand Down

0 comments on commit 4385f68

Please sign in to comment.