♻️ refactor: auto format

This commit is contained in:
2026-06-30 22:09:06 +07:00
parent 307bc6aa49
commit dca40a9cff
+2 -1
View File
@@ -491,7 +491,8 @@ async function favoriteRecordEntries(vrc: VRChat): Promise<WorldFavoriteRecord[]
query: { ownerId: me.id, n: 100 },
throwOnError: true,
});
const groups = rawGroups.filter((g): g is (typeof rawGroups)[number] & { type: WorldFavoriteGroupType } =>
const groups = rawGroups.filter(
(g): g is (typeof rawGroups)[number] & { type: WorldFavoriteGroupType } =>
isWorldGroupType(g.type),
);
const pageSize = 100;