Skip to content

Commit

Permalink
For productStore Setting used method type post for updating and creat…
Browse files Browse the repository at this point in the history
…ing store settings.
  • Loading branch information
arunpati committed Dec 20, 2024
1 parent 81e9b5a commit c5fcceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/ProductStoreService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const updateCompany = async (payload: any): Promise <any> => {
const updateCurrentStoreSettings = async (payload: any): Promise <any> => {
return api({
url: `productStores/${payload.productStoreId}/settings`,
method: "put",
method: "post",
data: payload
});
}
Expand Down

0 comments on commit c5fcceb

Please sign in to comment.