refactor: remove debug log and unused onError prop
All checks were successful
container-scan / Container Scan (pull_request) Successful in 3m11s
docker-build / docker (pull_request) Successful in 4m17s

This commit is contained in:
micha 2025-05-28 18:43:28 +02:00
parent bd911476e6
commit 4f8f9b035b

View file

@ -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}
/>
);