diff --git a/browser/src/components/menu/video/resolution.tsx b/browser/src/components/menu/video/resolution.tsx index 0af98d7..807d277 100644 --- a/browser/src/components/menu/video/resolution.tsx +++ b/browser/src/components/menu/video/resolution.tsx @@ -22,6 +22,7 @@ export const Resolution = () => { const [customResolutions, setCustomResolutions] = useState([]); const resolutions: VideoResolution[] = [ + { width: 3840, height: 2160 }, { width: 2560, height: 1440 }, { width: 1920, height: 1080 }, { width: 1280, height: 720 }, diff --git a/desktop/src/renderer/src/components/menu/video/resolution.tsx b/desktop/src/renderer/src/components/menu/video/resolution.tsx index 90c2bfe..34d2d06 100644 --- a/desktop/src/renderer/src/components/menu/video/resolution.tsx +++ b/desktop/src/renderer/src/components/menu/video/resolution.tsx @@ -23,6 +23,7 @@ export const Resolution = (): ReactElement => { const [customResolutions, setCustomResolutions] = useState([]) const resolutions: VideoResolution[] = [ + { width: 3840, height: 2160 }, { width: 2560, height: 1440 }, { width: 1920, height: 1080 }, { width: 1280, height: 720 },