From dca40a9cff037e5f9de033054e2942d37bc352d7 Mon Sep 17 00:00:00 2001 From: Yuzu Date: Tue, 30 Jun 2026 22:09:06 +0700 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20refactor:=20auto=20format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/vrchat/worldService.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/vrchat/worldService.ts b/src/main/vrchat/worldService.ts index d7d4f96..f6f8e39 100644 --- a/src/main/vrchat/worldService.ts +++ b/src/main/vrchat/worldService.ts @@ -491,8 +491,9 @@ async function favoriteRecordEntries(vrc: VRChat): Promise - isWorldGroupType(g.type), + const groups = rawGroups.filter( + (g): g is (typeof rawGroups)[number] & { type: WorldFavoriteGroupType } => + isWorldGroupType(g.type), ); const pageSize = 100; const entries: WorldFavoriteRecord[] = [];