From 3bb78b93cb73f142900b95aaecc4789b2a042cf6 Mon Sep 17 00:00:00 2001 From: Rafael Park Date: Tue, 26 Nov 2024 11:19:16 -0800 Subject: [PATCH] removed console.log in auth --- backend/src/middlewares/auth.js | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/middlewares/auth.js b/backend/src/middlewares/auth.js index 90cccfb9..b8d71ea2 100644 --- a/backend/src/middlewares/auth.js +++ b/backend/src/middlewares/auth.js @@ -4,7 +4,6 @@ import { createClient } from "@supabase/supabase-js"; const auth = async (req, res, next) => { try { const token = req.header("Authorization")?.split(" ")[1]; - console.log(token) const supabaseSecret = process.env.SUPABASE_JWT_SECRET; if (token) { jwt.verify(token, supabaseSecret);