Commit 61450cc1 by CalciumIon

fix: update searchUsers function to include searchKeyword and searchGroup parameters

parent 38d4c7b7
...@@ -406,7 +406,7 @@ const UsersTable = () => { ...@@ -406,7 +406,7 @@ const UsersTable = () => {
if (searchKeyword === '') { if (searchKeyword === '') {
await loadUsers(activePage - 1); await loadUsers(activePage - 1);
} else { } else {
await searchUsers(); await searchUsers(searchKeyword, searchGroup);
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment