From c543e823ab55d7df6c92434981509d50038aa7fb Mon Sep 17 00:00:00 2001 From: Echo Date: Tue, 10 Jun 2025 15:28:41 +0200 Subject: [PATCH] Ensure featured carousel respects tags (#34995) --- app/javascript/mastodon/features/account_timeline/index.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/javascript/mastodon/features/account_timeline/index.jsx b/app/javascript/mastodon/features/account_timeline/index.jsx index 7f4b546904..70e607d5f2 100644 --- a/app/javascript/mastodon/features/account_timeline/index.jsx +++ b/app/javascript/mastodon/features/account_timeline/index.jsx @@ -135,7 +135,7 @@ class AccountTimeline extends ImmutablePureComponent { }; render () { - const { accountId, statusIds, isLoading, hasMore, blockedBy, suspended, isAccount, hidden, multiColumn, remote, remoteUrl } = this.props; + const { accountId, statusIds, isLoading, hasMore, blockedBy, suspended, isAccount, hidden, multiColumn, remote, remoteUrl, params: { tagged } } = this.props; if (isLoading && statusIds.isEmpty()) { return ( @@ -172,8 +172,8 @@ class AccountTimeline extends ImmutablePureComponent { - - {!forceEmptyState && } + + {!forceEmptyState && } } alwaysPrepend