Fix type errors in admin queries

This commit is contained in:
Francis Cao 2024-02-06 21:50:48 -08:00
parent 86d482f18a
commit f9f67264a5
5 changed files with 20 additions and 18 deletions

View file

@ -221,7 +221,7 @@ export async function deleteUser(
id: userId,
},
}),
]).then(async (data: any) => {
]).then(async data => {
if (cache.enabled) {
const ids = websites.map(a => a.id);