var firebaseConfig = { apiKey: "AIzaSyCneEInwQf9s42gCzrX1ybhEvqO8Z1FcjM", authDomain: "broad-expo-rent-dj.firebaseapp.com", databaseURL: "https://broad-expo-rent-dj.firebaseio.com", projectId: "broad-expo-rent-dj", storageBucket: "broad-expo-rent-dj.appspot.com", messagingSenderId: "60481384412", appId: "1:60481384412:web:d39202acf4d3a9df266919", measurementId: "G-N8YN11228Z" }; 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();