MeteorJS: How to prevent google login popup second time?

I have implemented google login in Meteor JS. But everytime I login with it it shows the login popup with message

App Name would Like to
*Have offline access
Deny, Approve

Why is it asking everytime even though I have already gave it access?

Meteor.loginWithGoogle({
requestPermissions: [‘email’,‘profile’],
requestOfflineToken: ‘false’

});