File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ import {
15
15
useMouseStore ,
16
16
useRTCStore ,
17
17
useSettingsStore ,
18
- useUiStore ,
19
18
useVideoStore ,
20
19
} from "@/hooks/stores" ;
21
20
@@ -70,7 +69,6 @@ export default function WebRTCVideo() {
70
69
const [ blockWheelEvent , setBlockWheelEvent ] = useState ( false ) ;
71
70
72
71
// Misc states and hooks
73
- const disableVideoFocusTrap = useUiStore ( state => state . disableVideoFocusTrap ) ;
74
72
const [ send ] = useJsonRpc ( ) ;
75
73
76
74
// Video-related
Original file line number Diff line number Diff line change 1
- import { SettingsItem } from "./devices.$id.settings" ;
2
1
3
2
import { Checkbox } from "@/components/Checkbox" ;
4
3
import { SettingsPageHeader } from "@/components/SettingsPageheader" ;
5
-
6
4
import { useSettingsStore } from "@/hooks/stores" ;
7
5
6
+ import { SettingsItem } from "./devices.$id.settings" ;
7
+
8
8
export default function SettingsCtrlAltDelRoute ( ) {
9
9
const enableCtrlAltDel = useSettingsStore ( state => state . actionBarCtrlAltDel ) ;
10
10
const setEnableCtrlAltDel = useSettingsStore ( state => state . setActionBarCtrlAltDel ) ;
Original file line number Diff line number Diff line change @@ -9,12 +9,12 @@ import { useSettingsStore } from "@/hooks/stores";
9
9
import { useJsonRpc } from "@/hooks/useJsonRpc" ;
10
10
import notifications from "@/notifications" ;
11
11
import { SettingsPageHeader } from "@components/SettingsPageheader" ;
12
+ import { SelectMenuBasic } from "@components/SelectMenuBasic" ;
12
13
13
14
import { useFeatureFlag } from "../hooks/useFeatureFlag" ;
14
15
import { cx } from "../cva.config" ;
15
16
16
17
import { SettingsItem } from "./devices.$id.settings" ;
17
- import { SelectMenuBasic } from "@components/SelectMenuBasic" ;
18
18
19
19
export default function SettingsMouseRoute ( ) {
20
20
const hideCursor = useSettingsStore ( state => state . isCursorHidden ) ;
You can’t perform that action at this time.
0 commit comments