var firebaseConfig = { apiKey: "AIzaSyBBTGTlH5R_OtEFDLGURFBdZgVRy_ng5xw", authDomain: "dj-expo.firebaseapp.com", databaseURL: "https://dj-expo.firebaseio.com", projectId: "dj-expo", storageBucket: "dj-expo.appspot.com", messagingSenderId: "703027772053", appId: "1:703027772053:web:840bf4f2e7fcc6041b799c", measurementId: "G-1D3J80JLFX" }; var app= firebase.initializeApp(firebaseConfig); const auth = firebase.auth(); //----------check----------------// auth.onAuthStateChanged(function(user) { if (user) { console.log( user.email + " Signed In"); app.delete() .then(function() { console.log("App deleted successfully"); window.location.href = "/lobby/index.html"; //createCanvasApp(); }) .catch(function(error) { console.log("Error deleting app:", error); }); // logoutPreviousUser(); } else { console.log("Nobody is Signed In"); window.location.href = "/login/index.html"; } }); //createCanvasApp();