From efb2f5f5e3db3615be6cbcf24be5c00a37e66f5d Mon Sep 17 00:00:00 2001 From: Greg Kennedy Date: Sun, 8 Sep 2024 16:45:30 -0500 Subject: [PATCH] Do not enable "forward report" toggle by default --- app/javascript/mastodon/features/report/comment.jsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/app/javascript/mastodon/features/report/comment.jsx b/app/javascript/mastodon/features/report/comment.jsx index b80c14fcb9..513043849c 100644 --- a/app/javascript/mastodon/features/report/comment.jsx +++ b/app/javascript/mastodon/features/report/comment.jsx @@ -59,12 +59,7 @@ const Comment = ({ comment, domain, statusIds, isRemote, isSubmitting, selectedD loadedRef.current = true; - // First, pre-select known domains - availableDomains.forEach((domain) => { - onToggleDomain(domain, true); - }); - - // Then, fetch missing replied-to accounts + // Fetch missing replied-to accounts const unknownAccounts = OrderedSet(accountIds.filter(accountId => accountId && !accountsMap.has(accountId))); unknownAccounts.forEach((accountId) => { dispatch(fetchAccount(accountId));