Removed some unnecessary console.log

This commit is contained in:
Dan Lefrancois
2022-05-18 09:40:01 -07:00
parent 030456649a
commit 077dbaab30
2 changed files with 0 additions and 2 deletions

View File

@@ -112,7 +112,6 @@ store.subscribe(generateApis);
generateApis(); generateApis();
function generateApis() { function generateApis() {
console.log('generat');
const state = store.getState(); const state = store.getState();
const brandInfo = state.brandInfo.value; const brandInfo = state.brandInfo.value;

View File

@@ -41,7 +41,6 @@ export default function SignIn(props) {
async function checkSignedIn() { async function checkSignedIn() {
try { try {
if (await hasSession()) { if (await hasSession()) {
console.log('has session');
// Check to see if we can get subscriber information // Check to see if we can get subscriber information
await getSubscriberInformation(true); await getSubscriberInformation(true);