Remove unneeded console.logs

This commit is contained in:
Max Wofford 2024-08-15 18:45:44 -04:00
parent 1c30a67c4e
commit 361d35a3d3
2 changed files with 0 additions and 3 deletions

View file

@ -18,7 +18,6 @@ export const testAuth = async (authToken) => {
}
export const ensureAuthed = async (req) => {
console.log({...req.headers})
const authToken = req.headers['authorization']?.replace('Bearer ', '')
const user = await testAuth(authToken || '')
if (!user) {

View file

@ -17,8 +17,6 @@ export default async function handler(req, res) {
filterByFormula: `{User} = '${user.fields['Name']}'`
})
console.log({projects})
console.log({fields: projects[0].fields})
const results = projects.map(p => ({
id: p.id,
title: p.fields['Name'] || '',