diff --git a/resources/views/components/tables/curator-column.blade.php b/resources/views/components/tables/curator-column.blade.php
index 0608742..5a2b757 100644
--- a/resources/views/components/tables/curator-column.blade.php
+++ b/resources/views/components/tables/curator-column.blade.php
@@ -64,12 +64,22 @@
{!! $width !== null ? "width: {$width};" : null !!}
"
@class([
- 'h-full w-auto' => str($item->type)->contains('svg'),
'max-w-none' => $height && ! $width,
- 'object-cover object-center' => ! str($item->type)->contains('svg') && ($isRounded() || $width || $height)
+ 'object-cover object-center' => ($isRounded() || $width || $height)
])
{{ $getExtraImgAttributeBag() }}
/>
+ @elseif (str($item->type)->contains('svg'))
+
@else