From d9ae8997b953b975da9a45cdf1696d6cbceea2cf Mon Sep 17 00:00:00 2001 From: Sharon Stratsianis Date: Sat, 23 May 2026 20:31:59 +1000 Subject: [PATCH] fix friends freeze --- src/social/socialSections.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/social/socialSections.ts b/src/social/socialSections.ts index f0dba9cd..793e0fd8 100644 --- a/src/social/socialSections.ts +++ b/src/social/socialSections.ts @@ -365,6 +365,11 @@ export function createAllFriendsSection (options: { modify: !!editable, predicate: ns.foaf('knows'), noun: 'friend', + // Social pane already owns the async refresh cycle for friend data in + // socialPane.ts. Leave attachmentList's generic follow-up rerender disabled + // here or each fetched friend profile will trigger an extra whole-table refresh + // on top of the pane's own batched updates. + refreshOnDocumentLoad: false, renderSupportingInfo, renderNameSuffix })