From 8479c242901ab215158a06b0c1fdac74255cb2d5 Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Wed, 21 May 2025 17:43:36 -0500 Subject: [PATCH] chore(ui): Removed unused DeviceSettingState Now that we don't do any mouse/trackpad sensitivity settings, this whole interface is unused. --- ui/src/hooks/stores.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/ui/src/hooks/stores.ts b/ui/src/hooks/stores.ts index 01d1257..5518849 100644 --- a/ui/src/hooks/stores.ts +++ b/ui/src/hooks/stores.ts @@ -344,17 +344,6 @@ export const useSettingsStore = create( ), ); -export interface DeviceSettingsState { - trackpadSensitivity: number; - mouseSensitivity: number; - clampMin: number; - clampMax: number; - blockDelay: number; - trackpadThreshold: number; - scrollSensitivity: "low" | "default" | "high"; - setScrollSensitivity: (sensitivity: DeviceSettingsState["scrollSensitivity"]) => void; -} - export interface RemoteVirtualMediaState { source: "WebRTC" | "HTTP" | "Storage" | null; mode: "CDROM" | "Disk" | null;