Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/pwa-kit-create-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## v3.16.0-dev (Dec 17, 2025)
- Add new One-Click Checkout configuration [#3609](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/3609)

## v3.15.0 (Dec 17, 2025)
- Add new Google Cloud API configuration and Bonus Product configuration [#3523](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/3523)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ module.exports = {
appSourceId: '{{answers.project.dataCloud.appSourceId}}',
tenantId: '{{answers.project.dataCloud.tenantId}}'
},
// Enable one-click checkout feature
oneClickCheckout: {
enabled: false
},
// Bonus product config
pages: {
cart: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ module.exports = {
appSourceId: '{{answers.project.dataCloud.appSourceId}}',
tenantId: '{{answers.project.dataCloud.tenantId}}'
},
// Enable one-click checkout feature
oneClickCheckout: {
enabled: false
},
// Bonus product config
pages: {
cart: {
Expand Down
2 changes: 1 addition & 1 deletion packages/template-retail-react-app/config/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module.exports = {
tenantId: 'g82wgnrvm-ywk9dggrrw8mtggy.pc-rnd'
},
oneClickCheckout: {
enabled: true
enabled: false
},
partialHydrationEnabled: false,
pages: {
Expand Down
Loading