diff --git a/renderer/src/web/background/Leagues.ts b/renderer/src/web/background/Leagues.ts index 8da2400d..79078175 100644 --- a/renderer/src/web/background/Leagues.ts +++ b/renderer/src/web/background/Leagues.ts @@ -90,5 +90,8 @@ export const useLeagues = createGlobalState(() => { }) function isPrivateLeague (id: string) { + if (id.includes('Ruthless')) { + return true + } return /\(PL\d+\)$/.test(id) }