diff --git a/src/components/image-alt-display.tsx b/src/components/image-alt-display.tsx index 440fd2f..5caae37 100644 --- a/src/components/image-alt-display.tsx +++ b/src/components/image-alt-display.tsx @@ -77,27 +77,25 @@ export function ImageAltDisplay({ images }: ImageAltDisplayProps) { return (
-
-
- {missingAltCount > 0 ? ( -

- {missingAltCount} of{" "} - {images.length} images are missing alt text. -

- ) : ( -

- Great! All {images.length} images have alt text. -

- )} -
-
- setShowMissingOnly(!!checked)} - /> - -
+
+ setShowMissingOnly(!!checked)} + /> + +
+
+ {missingAltCount > 0 ? ( +

+ {missingAltCount} of{" "} + {images.length} images are missing alt text. +

+ ) : ( +

+ Great! All {images.length} images have alt text. +

+ )}