diff --git a/app/soapbox/components/status-hover-card.tsx b/app/soapbox/components/status-hover-card.tsx index b367c0311..c52589a36 100644 --- a/app/soapbox/components/status-hover-card.tsx +++ b/app/soapbox/components/status-hover-card.tsx @@ -30,7 +30,7 @@ export const StatusHoverCard: React.FC = ({ visible = true }) const targetRef = useAppSelector(state => state.status_hover_card.ref?.current); useEffect(() => { - if (!status) { + if (statusId && !status) { dispatch(fetchStatus(statusId)); } }, [statusId, status]);