Skip to content

Commit

Permalink
Remove extra slash in the url (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jade-GG authored Sep 6, 2024
1 parent da22a24 commit f422283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/components/MSPPending.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
return;
}
window.magentoAPI('get', `/multisafepay/orders/${orderId}/${token}`).then(response => {
window.magentoAPI('get', `multisafepay/orders/${orderId}/${token}`).then(response => {
if(['processing', 'success', 'complete'].includes(response?.status)) {
useToken.value = this.token;
useMask.value = this.mask;
Expand Down

0 comments on commit f422283

Please sign in to comment.