Gerson Apablaza

Results 2 comments of Gerson Apablaza

To be able to use angular "**1.6**" (keeping "**^1.5.0-rc.2**" in package.json) in the constructor wrap the validation inside "**$onInit**" (thanks @RawleJuglal ) this way: ```javascript this.$onInit = () => {...

Try defining "**googleLoginOptions**" with param "**oneTapEnabled**" set to "**false**" when defining the provider in **AppModule**: ``` const googleLoginOptions: GoogleInitOptions = { oneTapEnabled: false, // default is true }; ... providers:...