diff --git a/app/javascript/mastodon/features/account_timeline/v2/index.tsx b/app/javascript/mastodon/features/account_timeline/v2/index.tsx index 73649941886..c88d2a12d97 100644 --- a/app/javascript/mastodon/features/account_timeline/v2/index.tsx +++ b/app/javascript/mastodon/features/account_timeline/v2/index.tsx @@ -86,11 +86,9 @@ const InnerTimeline: FC<{ accountId: string; multiColumn: boolean }> = ({ const dispatch = useAppDispatch(); useEffect(() => { if (accountId) { - if (!timeline) { - dispatch(expandTimelineByKey({ key })); - } + dispatch(expandTimelineByKey({ key })); } - }, [accountId, dispatch, key, timeline]); + }, [accountId, dispatch, key]); const handleLoadMore = useCallback( (maxId: number) => {