Skip to content

Commit

Permalink
removed console.log in auth
Browse files Browse the repository at this point in the history
  • Loading branch information
parkrafael committed Nov 26, 2024
1 parent c27acf2 commit 3bb78b9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion backend/src/middlewares/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3bb78b9

Please sign in to comment.