Skip to content

Commit

Permalink
Fix user autocomplete not always showing on search screen (#7977)
Browse files Browse the repository at this point in the history
(cherry picked from commit 663f9ba)
  • Loading branch information
larkox authored and mattermost-build committed May 31, 2024
1 parent d0aa643 commit 4a2accd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/autocomplete/at_mention/at_mention.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ const AtMention = ({
const filteredUsers = filterResults(fallbackUsers, term);
setFilteredLocalUsers(filteredUsers.length ? filteredUsers : emptyUserlList);
} else if (receivedUsers) {
sortRecievedUsers(sUrl, term, receivedUsers?.users, receivedUsers?.out_of_channel);
await sortRecievedUsers(sUrl, term, receivedUsers?.users, receivedUsers?.out_of_channel);
}

setLoading(false);
Expand Down

0 comments on commit 4a2accd

Please sign in to comment.