1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/schemas/VoiceVideoSchema.ts b/src/util/schemas/VoiceVideoSchema.ts
index 837ee1e7..0ba519e1 100644
--- a/src/util/schemas/VoiceVideoSchema.ts
+++ b/src/util/schemas/VoiceVideoSchema.ts
@@ -12,6 +12,6 @@ export interface VoiceVideoSchema {
rtx_ssrc: number;
max_bitrate: number;
max_framerate: number;
- max_resolution: { type: string; width: number; height: number; };
+ max_resolution: { type: string; width: number; height: number };
}[];
-}
\ No newline at end of file
+}
|