summary refs log tree commit diff
path: root/src/util/schemas/UserProfileModifySchema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/schemas/UserProfileModifySchema.ts')
-rw-r--r--src/util/schemas/UserProfileModifySchema.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util/schemas/UserProfileModifySchema.ts b/src/util/schemas/UserProfileModifySchema.ts
index d49fe326..6f6777dd 100644
--- a/src/util/schemas/UserProfileModifySchema.ts
+++ b/src/util/schemas/UserProfileModifySchema.ts
@@ -21,9 +21,9 @@ export interface UserProfileModifySchema {
 	accent_color?: number | null;
 	banner?: string | null;
 	pronouns?: string;
-
-	/*
-	 * @items.type integer
+	/**
+	 * @minItems 2
+	 * @maxItems 2
 	 */
-	theme_colors?: [number, number];
+	theme_colors?: number[]; // puyo: changed from [number, number] because it breaks openapi
 }