this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix media not opening when switching hero status on Status page

+5
+5
src/pages/status.jsx
··· 68 68 69 69 const sKey = statusKey(id, instance); 70 70 const [heroStatus, setHeroStatus] = useState(states.statuses[sKey]); 71 + useEffect(() => { 72 + if (states.statuses[sKey]) { 73 + setHeroStatus(states.statuses[sKey]); 74 + } 75 + }, [sKey]); 71 76 72 77 const closeLink = useMemo(() => { 73 78 const { prevLocation } = states;