diff --git a/src/components/flow/FlowCellImage/index.tsx b/src/components/flow/FlowCellImage/index.tsx index 3d49b4f4..58a8edfb 100644 --- a/src/components/flow/FlowCellImage/index.tsx +++ b/src/components/flow/FlowCellImage/index.tsx @@ -19,7 +19,14 @@ const FlowCellImage: FC<Props> = ({ ...rest }) => ( <div className={classNames(styles.wrapper, className)}> - <Image {...rest} src={src!} alt={alt} placeholder="empty" layout="fill" /> + <Image + {...rest} + src={src!} + alt={alt} + placeholder="empty" + layout="fill" + objectFit="cover" + /> {children} </div> );