From 78dad9e8ff163d64a50b2817d8e340edff73dc0e Mon Sep 17 00:00:00 2001 From: Paul Lizer Date: Tue, 3 Feb 2026 16:57:51 -0500 Subject: [PATCH] Fixed! The issue was caused by duplicated code blocks --- .../single_app/static/js/group/manage_group.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/application/single_app/static/js/group/manage_group.js b/application/single_app/static/js/group/manage_group.js index 2de03e43e..250a7b700 100644 --- a/application/single_app/static/js/group/manage_group.js +++ b/application/single_app/static/js/group/manage_group.js @@ -644,22 +644,15 @@ function searchUsers() { // Render user-search results in add-member modal function renderUserSearchResults(users) { let html = ""; - if (!users || !users.length) { - html = `No results.`; if (!users || !users.length) { html = `No results.`; } else { - users.forEach(u => { users.forEach(u => { html += ` ${u.displayName || "(no name)"} ${u.email || ""} -