From 8e7c3973dc67835e0ce9c7073b9344ec19d3910a Mon Sep 17 00:00:00 2001 From: Echo Date: Thu, 19 Feb 2026 18:20:33 +0100 Subject: [PATCH] Remove conditional check for timeline data (#37922) --- .../mastodon/features/account_timeline/v2/index.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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) => {