Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: paypal readonly checkout guest paypal checkout button #948

Merged
merged 7 commits into from
Jan 29, 2025
2 changes: 1 addition & 1 deletion apps/web/pages/readonly-checkout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const handleGuestUserInit = async () => {

if (billingAddresses.value.length === 0) await navigateTo(localePath(paths.cart));
if (shippingAddresses.value.length === 0) await saveShippingAddress(billingAddresses.value[0], true);

await setInitialCartTotal();
await setClientCheckoutAddress();
await fetchShippingAndPaymentMethods();
} catch (error) {
Expand Down
1 change: 1 addition & 0 deletions docs/changelog/changelog_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
- Fixed a hydration error when fetching recommended products on the homepage.
- Fixed an issue that disabled the save button even though the user has edited the homepage template.
- Removed the `nuxt-security` module for now due to issues with PayPal.
- Fixed an issue with PayPal Express Checkout where it would require you to reauthorize the payment.

## v1.9.0 (2025-01-23) <a href="https://github.com/plentymarkets/plentyshop-pwa/compare/v1.8.0...v1.9.0" target="_blank" rel="noopener"><b>Overview of all changes</b></a>

Expand Down
Loading