fix: Call hasUserKeys() on user argument (#1295)
This commit is contained in:
parent
5cd08b3f98
commit
f61b731fb3
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ const runSDK = ({ baseUrl, websiteToken }) => {
|
||||||
throw new Error('Identifier should be a string or a number');
|
throw new Error('Identifier should be a string or a number');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!hasUserKeys()) {
|
if (!hasUserKeys(user)) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
'User object should have one of the keys [avatar_url, email, name]'
|
'User object should have one of the keys [avatar_url, email, name]'
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue