]> Untitled Git - lemmy-ui.git/blob - src/shared/utils/app/fetch-users.ts
fix submodule error
[lemmy-ui.git] / src / shared / utils / app / fetch-users.ts
1 import { fetchSearchResults } from "@utils/app";
2
3 export default async function fetchUsers(q: string) {
4   const res = await fetchSearchResults(q, "Users");
5
6   return res.state === "success" ? res.data.users : [];
7 }