From 581ceb2b3fd20bc6f81eb7e4675df699df6b9a26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samy=20Pess=C3=A9?= Date: Tue, 8 Apr 2025 00:36:08 +0200 Subject: [PATCH] Cleanup --- packages/gitbook/src/routes/ogimage.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/gitbook/src/routes/ogimage.tsx b/packages/gitbook/src/routes/ogimage.tsx index 016290f40..159fbe015 100644 --- a/packages/gitbook/src/routes/ogimage.tsx +++ b/packages/gitbook/src/routes/ogimage.tsx @@ -346,7 +346,6 @@ async function readStaticImage(url: string) { const image = await readSelfImage(url); staticImagesCache.set(url, image); - return image; } @@ -356,7 +355,5 @@ async function readStaticImage(url: string) { async function readSelfImage(url: string) { const response = await fetchSelf(url); const image = await readImage(response); - - console.log('readSelfImage', url, image); return image; }