From d62ee8f2a67f0ec0e9569176548300b86a225636 Mon Sep 17 00:00:00 2001 From: AkashRajpurohit Date: Sat, 2 Nov 2024 22:04:48 +0530 Subject: [PATCH] chore: :recycle: remove console log --- src/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index d1e699c..db30226 100644 --- a/src/index.ts +++ b/src/index.ts @@ -38,8 +38,6 @@ app.get('*', async (c) => { const urlWithRef = appendReferrerTextToUrl(url, REFERRER_TEXT, existingSearchParams); - console.log({ text, url }) - return c.redirect(urlWithRef, 307); })