From 84b523df8353ff6ba679f5c31b17b24edd5aedd3 Mon Sep 17 00:00:00 2001 From: Siddharth Date: Fri, 22 May 2026 19:54:13 -0700 Subject: [PATCH] fix: drop unused imports and reorder in SettingsPanel Removes MAX_PLAYBACK_SPEED and DEFAULT_WEBCAM_SIZE_PRESET (TS6133) and runs biome's organize-imports to satisfy the Lint check. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/components/video-editor/SettingsPanel.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/video-editor/SettingsPanel.tsx b/src/components/video-editor/SettingsPanel.tsx index 7163568..571b587 100644 --- a/src/components/video-editor/SettingsPanel.tsx +++ b/src/components/video-editor/SettingsPanel.tsx @@ -53,6 +53,7 @@ import ColorPicker from "../ui/color-picker"; import { AnnotationSettingsPanel } from "./AnnotationSettingsPanel"; import { BlurSettingsPanel } from "./BlurSettingsPanel"; import { CropControl } from "./CropControl"; +import { parseCustomPlaybackSpeedInput } from "./customPlaybackSpeed"; import { DEFAULT_CURSOR_SETTINGS, DEFAULT_EDITOR_LAYOUT_SETTINGS, @@ -61,7 +62,6 @@ import { DEFAULT_SOURCE_DIMENSIONS, DEFAULT_WEBCAM_SETTINGS, } from "./editorDefaults"; -import { parseCustomPlaybackSpeedInput } from "./customPlaybackSpeed"; import { KeyboardShortcutsHelp } from "./KeyboardShortcutsHelp"; import type { AnnotationRegion, @@ -79,8 +79,6 @@ import type { ZoomFocusMode, } from "./types"; import { - MAX_PLAYBACK_SPEED, - DEFAULT_WEBCAM_SIZE_PRESET, MAX_ZOOM_SCALE, MIN_ZOOM_SCALE, ROTATION_3D_PRESET_ORDER,