From c0973b60989aba2cb334d2337a7d18ac2202b983 Mon Sep 17 00:00:00 2001 From: Patrick Fic <> Date: Thu, 1 Sep 2022 16:48:29 -0700 Subject: [PATCH] Remove unnecessary console log. --- client/src/firebase/firebase.utils.js | 1 - 1 file changed, 1 deletion(-) diff --git a/client/src/firebase/firebase.utils.js b/client/src/firebase/firebase.utils.js index 34b4c353e..7a65be083 100644 --- a/client/src/firebase/firebase.utils.js +++ b/client/src/firebase/firebase.utils.js @@ -53,7 +53,6 @@ export const requestForToken = () => { }) .then((currentToken) => { if (currentToken) { - console.log("current token for client: ", currentToken); window.sessionStorage.setItem("fcmtoken", currentToken); // Perform any other necessary action with the token } else {