you probably have 2 instance of of your google account set up. one in your settings.py and the other one in your django admin console.
best you delete anyone you think you should delete and make migrations and migrate
#settings.py (you could delete this and leave the one in the admin)
```python
SOCIALACCOUNT_PROVIDERS = {
'google': {
# For each OAuth based provider, either add a ``SocialApp``
# (``socialaccount`` app) containing the required client
# credentials, or list them here:
'APP': {
'client_id': '123',
'secret': '456',
'key': ''
}
}
}
```
Removing this:
```python
SOCIALACCOUNT_PROVIDERS = {
'google': {
# For each OAuth based provider, either add a ``SocialApp``
# (``socialaccount`` app) containing the required client
# credentials, or list them here:
'APP': {
'client_id': '123',
'secret': '456',
'key': ''
}
}
}
```
From the `settings.py` file, and *only keeping the one set up in the `Django` dashboad* worked!