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

View file

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