From d7bbe9c451d4ae083de3e12873b39ecb79acf882 Mon Sep 17 00:00:00 2001 From: Echo Date: Thu, 19 Feb 2026 18:20:33 +0100 Subject: [PATCH] [Glitch] Remove conditional check for timeline data Port 8e7c3973dc67835e0ce9c7073b9344ec19d3910a to glitch-soc Signed-off-by: Claire --- .../flavours/glitch/features/account_timeline/v2/index.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app/javascript/flavours/glitch/features/account_timeline/v2/index.tsx b/app/javascript/flavours/glitch/features/account_timeline/v2/index.tsx index 48f98d9af1..3bf8ee67f6 100644 --- a/app/javascript/flavours/glitch/features/account_timeline/v2/index.tsx +++ b/app/javascript/flavours/glitch/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) => {