From 2a0b0f890dda7e5b8713ea2d135cff21d01a92f0 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Tue, 3 Mar 2026 19:14:19 -0800 Subject: [PATCH] fix build 'cannot find RankedType' in ApiSchemas.ts --- src/core/ApiSchemas.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/ApiSchemas.ts b/src/core/ApiSchemas.ts index 3f9fbdea5..32153359f 100644 --- a/src/core/ApiSchemas.ts +++ b/src/core/ApiSchemas.ts @@ -1,7 +1,7 @@ import { z } from "zod"; import { base64urlToUuid } from "./Base64"; import { BigIntStringSchema, PlayerStatsSchema } from "./StatsSchemas"; -import { Difficulty, GameMode, GameType } from "./game/Game"; +import { Difficulty, GameMode, GameType, RankedType } from "./game/Game"; export const RefreshResponseSchema = z.object({ token: z.string(),