fix(auth-hooks): replace console.log with logging function

This commit is contained in:
Aminejvm 2021-06-11 19:39:18 +01:00
parent 31c2a62bf5
commit 9ea45c70f0

View File

@ -263,7 +263,7 @@ export const useTwitter = ({ onAuthenticate, goToTwitterSignupScene }) => {
}
}
} catch (e) {
console.log(e);
Logging.error(e);
}
}, 500);
});