diff --git a/ts/components/conversation/Image.tsx b/ts/components/conversation/Image.tsx index 33c1ceeec..9257dafff 100644 --- a/ts/components/conversation/Image.tsx +++ b/ts/components/conversation/Image.tsx @@ -84,7 +84,7 @@ export const Image = (props: Props) => { ); const { caption } = attachment || { caption: null }; - const [pending, setPending] = useState(attachment.pending || !url || true); + const [pending, setPending] = useState(attachment.pending || true); const [mounted, setMounted] = useState( (!loading || !pending) && urlToLoad === undefined );