diff --git a/app/containers/message/RepliedThread.tsx b/app/containers/message/RepliedThread.tsx index c0a2c7d685..1d991e4837 100644 --- a/app/containers/message/RepliedThread.tsx +++ b/app/containers/message/RepliedThread.tsx @@ -34,8 +34,8 @@ const RepliedThread = memo(({ tmid, tmsg, isHeader, fetchThreadName, id, isEncry return ( - - + + diff --git a/app/containers/message/Urls.tsx b/app/containers/message/Urls.tsx index 06642b6e2b..43a2437ccf 100644 --- a/app/containers/message/Urls.tsx +++ b/app/containers/message/Urls.tsx @@ -51,7 +51,7 @@ const UrlContent = ({ title, description }: { title: string; description: string return ( {title ? ( - + {title} ) : null} @@ -97,8 +97,8 @@ const UrlImage = ({ image, hasContent }: { image: string; hasContent: boolean }) overflow: 'hidden', alignItems: 'center', justifyContent: 'center', - ...imageDimensions.width <= 64 && { width: 64 }, - ...imageDimensions.height <= 64 && { height: 64 } + ...(imageDimensions.width <= 64 && { width: 64 }), + ...(imageDimensions.height <= 64 && { height: 64 }) }; if (!hasContent) { containerStyle = {