Skip to content

Commit 8587ba9

Browse files
committed
fix: checkout page not found
1 parent eb344ab commit 8587ba9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/pages/pricing.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ async function handleCheckout() {
7979
const { data: checkoutData } = await paymentApi.checkout('sepay', productIdentifier)
8080
8181
navigateTo({
82-
name: 'checkout',
82+
path: '/checkout',
8383
query: {
8484
qr: checkoutData.paymentUrl,
8585
},
@@ -98,7 +98,7 @@ tryOnBeforeMount(async () => {
9898
pendingPaymentPrice.value = null
9999
100100
navigateTo({
101-
name: 'checkout',
101+
path: '/checkout',
102102
query: {
103103
qr: checkoutData.paymentUrl,
104104
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@thecodeorigin/nuxt",
33
"type": "module",
4-
"version": "2.6.0",
4+
"version": "2.6.1",
55
"publishConfig": {
66
"registry": "https://registry.npmjs.org",
77
"access": "public"

0 commit comments

Comments
 (0)