chore: format

This commit is contained in:
naskya 2024-04-18 05:01:49 +09:00
parent 6a94d1b65d
commit 8337863ed3
No known key found for this signature in database
GPG Key ID: 712D413B3A9FED5C
1 changed files with 3 additions and 5 deletions

View File

@ -44,9 +44,7 @@ export default define(meta, paramDef, async (ps, me) => {
),
);
return await Users.packMany(
users.filter((x) => (x != null)) as User[],
me,
{ detail: true },
);
return await Users.packMany(users.filter((x) => x != null) as User[], me, {
detail: true,
});
});