Do not enable "forward report" toggle by default

This commit is contained in:
Greg Kennedy 2024-09-08 16:45:30 -05:00
parent 82161d8ae5
commit efb2f5f5e3
No known key found for this signature in database
GPG key ID: 45B25739949112C6

View file

@ -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));