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) => {