feat(events): add event creation form components

This commit is contained in:
micha 2025-06-25 13:10:27 +02:00 committed by Dominik Stahl
parent 0e24f7917b
commit b385f063c2
24 changed files with 1868 additions and 61 deletions

View file

@ -63,9 +63,9 @@ export default function Logo({
);
}
if (width === undefined || height === undefined) {
if (width === undefined && height === undefined) {
console.warn(
`Logo: 'width' and 'height' props are required by next/image for ${logoType} logo. Path: ${LOGO_BASE_PATH}logo_${colorType}_${logoType}_${theme}.${IMAGE_EXTENSION}`,
`Logo: 'width' or 'height' props are required by next/image for ${logoType} logo. Path: ${LOGO_BASE_PATH}logo_${colorType}_${logoType}_${theme}.${IMAGE_EXTENSION}`,
);
}