From b59ddc79241a9e72415d61334b3f748a916c789a Mon Sep 17 00:00:00 2001 From: Shlee Date: Fri, 28 Aug 2026 15:06:48 +0000 Subject: [PATCH] Typo: Update useHandlersForStatus to reference account.id in hooks.ts (#40281) --- app/javascript/mastodon/components/status/hooks.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/javascript/mastodon/components/status/hooks.ts b/app/javascript/mastodon/components/status/hooks.ts index 893f22b98c2..4e6fa32e52f 100644 --- a/app/javascript/mastodon/components/status/hooks.ts +++ b/app/javascript/mastodon/components/status/hooks.ts @@ -282,9 +282,7 @@ export function useHandlersForStatus( ); return useElementHandledLink({ hashtagAccountId: - typeof status?.account === 'string' - ? status.account - : status?.account.acct, + typeof status?.account === 'string' ? status.account : status?.account.id, hrefToCollectionId, hrefToMention, });