Skip to content

Commit

Permalink
clean up console log
Browse files Browse the repository at this point in the history
  • Loading branch information
thescientist13 committed Nov 25, 2023
1 parent fe1758e commit 5c4c2c2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/api/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const client = contentful.createClient({

// learn more about HTTP functions here: https://arc.codes/http
export async function handler (request) {
// console.log('ENV @@@@@', process.env);
const params = new URLSearchParams(request.url.slice(request.url.indexOf('?')));
const id = params.has('id') ? params.get('id') : null;
const tag = params.has('tag') ? params.get('tag') : null;
Expand Down

0 comments on commit 5c4c2c2

Please sign in to comment.