No id_token being return in the auth0-js function webAuth.client.login()

That’s exactly it. I should have clarified I was intializing it like this

let webAuth = new WebAuth({
domain: ‘stg-helloinspire.auth0.com’,
clientID: this.config.auth0.clientId,
scope: ‘open_id profile email offline_access’,
audience: this.config.auth0.audience,
redirectUri: this.config.auth0.callbackURL,
responseType: ‘token id_token’
})

The underscore in open_id was the problem.