diff --git a/ts/components/StoryImage.tsx b/ts/components/StoryImage.tsx index a828fcd86086..6353318821d4 100644 --- a/ts/components/StoryImage.tsx +++ b/ts/components/StoryImage.tsx @@ -76,6 +76,10 @@ export function StoryImage({ } }, [isPaused]); + useEffect(() => { + setHasImgError(false); + }, [attachment?.url, attachment?.thumbnail?.url]); + if (!attachment) { return null; }