diff --git a/mobile/src/components/features/chat-space/chat-view/MessageBlock.tsx b/mobile/src/components/features/chat-space/chat-view/MessageBlock.tsx index 4b5f2302e..2716d271e 100644 --- a/mobile/src/components/features/chat-space/chat-view/MessageBlock.tsx +++ b/mobile/src/components/features/chat-space/chat-view/MessageBlock.tsx @@ -236,8 +236,28 @@ const options = { const ImageMessageBlock = ({ message }: { message: ImageMessage }) => { const { ref, inView } = useInView(options); - const height = `${message.thumbnail_height ?? 200}px` - const width = `${message.thumbnail_width ?? 300}px` + const { width, height } = useMemo(() => { + let height = message.thumbnail_height ?? 200 + let width = message.thumbnail_width ?? 300 + + // Max width is 280px, so we need to adjust the height accordingly + const aspectRatio = width / height + + if (width > 280) { + width = 280 + height = width / aspectRatio + } + + return { + height: `${height}px`, + width: `${width}px` + } + + }, [message]) + + + // const height = `${message.thumbnail_height ?? 200}px` + // const width = `${message.thumbnail_width ?? 300}px` return