♻️ refactor: auto format

This commit is contained in:
2026-06-30 22:09:06 +07:00
parent 307bc6aa49
commit dca40a9cff
+3 -2
View File
@@ -491,8 +491,9 @@ 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 } =>
isWorldGroupType(g.type),
const groups = rawGroups.filter(
(g): g is (typeof rawGroups)[number] & { type: WorldFavoriteGroupType } =>
isWorldGroupType(g.type),
);
const pageSize = 100;
const entries: WorldFavoriteRecord[] = [];