fix object lifecycle point clicking for aspect ratios less than 16/9

This commit is contained in:
Josh Hawkins 2025-03-26 21:08:59 -05:00
parent 7640960f84
commit d21fa549c9

View File

@ -365,7 +365,6 @@ export default function ObjectLifecycle({
<div
className={cn(
"relative mx-auto flex max-h-[50dvh] flex-row justify-center",
!imgLoaded && aspectRatio < 16 / 9 && "h-full",
)}
style={{
aspectRatio: !imgLoaded ? aspectRatio : undefined,