Merge branch 'account-timeline' into 'develop'

Fetch account timeline when switching tabs

See merge request soapbox-pub/soapbox-fe!1735
This commit is contained in:
marcin mikołajczak 2022-08-14 18:22:38 +00:00
commit f0eb5ea050

View file

@ -65,7 +65,7 @@ const AccountTimeline: React.FC<IAccountTimeline> = ({ params, withReplies = fal
if (account) {
dispatch(expandAccountTimeline(account.id, { withReplies }));
}
}, [account?.id]);
}, [account?.id, withReplies]);
const handleLoadMore = (maxId: string) => {
if (account) {