added employer column in ready table

This commit was merged in pull request #31.
This commit is contained in:
victorAnumudu
2024-06-13 17:33:47 +01:00
parent c970467f16
commit ea90bd6fc5
15 changed files with 38 additions and 13 deletions
@@ -32,7 +32,7 @@ const QueryResponseProvider: FC<WithChildren> = ({ children }) => {
refetch,
data: response,
} = useQuery(
`${QUERIES.USERS_LIST}-${query}`,
`${QUERIES.APPROVED_LIST}-${query}`,
() => {
return getApprovedUsers(query);
},