Skip to content

Commit

Permalink
Fixing lint error (#8432)
Browse files Browse the repository at this point in the history
  • Loading branch information
idanovo authored Dec 18, 2024
1 parent f2c1f5d commit 6b31009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/src/pages/auth/groups/group/members.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const GroupMemberList = ({ groupId, after, onPaginate }) => {

const searchUsers = async (prefix, maxResults, resolveUserDisplayNameFN = (user => user.id)) => {
let allUsersList = allUsers;
if (allUsersList.length == 0) {
if (allUsersList.length === 0) {
allUsersList = await allUsersFromLakeFS(resolveUserDisplayNameFN)
setAllUsers(allUsersList)
}
Expand Down

0 comments on commit 6b31009

Please sign in to comment.