fix: update searchUsers function to include searchKeyword and searchGroup parameters

This commit is contained in:
CalciumIon
2024-12-25 13:44:55 +08:00
parent aaf5cecefd
commit f2c9388139

View File

@@ -406,7 +406,7 @@ const UsersTable = () => {
if (searchKeyword === '') {
await loadUsers(activePage - 1);
} else {
await searchUsers();
await searchUsers(searchKeyword, searchGroup);
}
};