Skip to content

Commit

Permalink
fix: proper href location set
Browse files Browse the repository at this point in the history
  • Loading branch information
NagariaHussain committed Nov 9, 2023
1 parent 972b1d0 commit 662cb48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion printrov_merch_store/www/store/checkout.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
}
}).then(({ message: store_order_id }) => {
// redirect to success page
window.location = `{{ success_page_route }}?store_order_id=${store_order_id}`
window.location.href = `{{ success_page_route }}?store_order_id=${store_order_id}`
}).catch(() => {
alert("Error placing your order!")
})
Expand Down

0 comments on commit 662cb48

Please sign in to comment.