Merge branch 'flashing-hashtags-fix' into 'develop'

Hashtag timeline: stop flashing repeatedly

Closes #1166

See merge request soapbox-pub/soapbox!1891
This commit is contained in:
Alex Gleason 2022-11-15 12:56:10 +00:00
commit f6fb4def41

View file

@ -95,7 +95,7 @@ export const HashtagTimeline: React.FC<IHashtagTimeline> = ({ params }) => {
subscribe(); subscribe();
dispatch(clearTimeline(`hashtag:${id}`)); dispatch(clearTimeline(`hashtag:${id}`));
dispatch(expandHashtagTimeline(id, { tags })); dispatch(expandHashtagTimeline(id, { tags }));
}, [id, tags]); }, [id]);
return ( return (
<Column label={`#${id}`} transparent withHeader={false}> <Column label={`#${id}`} transparent withHeader={false}>