From f0e23139a2e6ad8fa770128858fee2b3f86a1543 Mon Sep 17 00:00:00 2001 From: Micha Date: Wed, 28 May 2025 18:43:28 +0200 Subject: [PATCH] refactor: remove debug log and unused onError prop --- src/components/logo.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/components/logo.tsx b/src/components/logo.tsx index 80a3c6b..505665f 100644 --- a/src/components/logo.tsx +++ b/src/components/logo.tsx @@ -62,8 +62,6 @@ export default function Logo({ return null; } - console.log(colorType, logoType, theme); - if (!colorType || !logoType || !theme) { const errorMessage = 'Logo: colorType, logoType, and theme props are required.'; @@ -129,7 +127,6 @@ export default function Logo({ className={className} width={width} height={height} - // onError={handleImageError} {...imageProps} /> );