From 96743ed47897b4e7e2e30a40ee155b2499f56099 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Wed, 31 May 2023 17:00:16 -0400 Subject: [PATCH] Remove temporary debugging --- src/api/status.ts | 2 +- src/render/photo.ts | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/api/status.ts b/src/api/status.ts index eb5eaf2..545f8fb 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -71,7 +71,7 @@ const populateTweetProperties = async ( tweet.extended_entities?.media || tweet.entities?.media || [] ); - console.log('tweet', JSON.stringify(tweet)); + // console.log('tweet', JSON.stringify(tweet)); /* Populate this Tweet's media */ mediaList.forEach(media => { diff --git a/src/render/photo.ts b/src/render/photo.ts index 958ace2..67b871e 100644 --- a/src/render/photo.ts +++ b/src/render/photo.ts @@ -58,7 +58,5 @@ export const renderPhoto = ( ]; } - console.log('Photo render instructions', JSON.stringify(instructions)); - return instructions; };