Skip to content

Commit

Permalink
πŸ› Make amp-subscriptions-google skip the swgAccountCreationScreen (#3…
Browse files Browse the repository at this point in the history
…7060)

* tell swg to skipAccountCreationScreen

* Comment

comment

* lint
  • Loading branch information
jpettitt committed Dec 2, 2021
1 parent d0d1784 commit 4a66d3f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,11 @@ export class GoogleSubscriptionsPlatform {
)
.map((exp) => exp.substring(4));

const swgConfig = {'experiments': ampExperimentsForSwg};
// Force skipping the account creation screen in the buyflow
const swgConfig = {
'experiments': ampExperimentsForSwg,
'skipAccountCreationScreen': true,
};
let resolver = null;
/** @private @const {!ConfiguredRuntime} */
this.runtime_ = new ConfiguredRuntime(
Expand Down

0 comments on commit 4a66d3f

Please sign in to comment.