From f2b007bcf5d6a1ae9a1aa00caa8284cd6937fa54 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Thu, 28 Oct 2021 20:51:40 -0700 Subject: [PATCH] fix: Flipped load logic --- app/components/Collaborators.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Collaborators.js b/app/components/Collaborators.js index 22f47d3e..e5b89aa0 100644 --- a/app/components/Collaborators.js +++ b/app/components/Collaborators.js @@ -57,7 +57,7 @@ function Collaborators(props: Props) { const userIdsToFetch = uniq([ ...document.collaboratorIds, ...presentIds, - ]).filter((userId) => users.get(userId)); + ]).filter((userId) => !users.get(userId)); if (!isEqual(requestedUserIds, userIdsToFetch)) { setRequestedUserIds(userIdsToFetch);