File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
apps/desktop/src/routes/editor/Timeline Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11import { createEventListenerMap } from "@solid-primitives/event-listener" ;
22import { Menu } from "@tauri-apps/api/menu" ;
33import { cx } from "cva" ;
4+ import { Array , Option } from "effect" ;
45import {
56 batch ,
67 createMemo ,
78 createRoot ,
89 createSignal ,
910 For ,
11+ Match ,
1012 Show ,
1113 Switch ,
1214} from "solid-js" ;
1315import { produce } from "solid-js/store" ;
14- import { Array , Option } from "effect" ;
1516import { commands } from "~/utils/tauri" ;
1617import { useEditorContext } from "../context" ;
1718import {
@@ -20,7 +21,6 @@ import {
2021 useTrackContext ,
2122} from "./context" ;
2223import { SegmentContent , SegmentHandle , SegmentRoot , TrackRoot } from "./Track" ;
23- import { Match } from "solid-js" ;
2424
2525export type ZoomSegmentDragState =
2626 | { type : "idle" }
@@ -321,7 +321,7 @@ export function ZoomTrack(props: {
321321 Array . isArray ( currentSelection . indices )
322322 ? currentSelection . indices
323323 : "index" in currentSelection &&
324- typeof currentSelection . index === "number"
324+ typeof currentSelection . index === "number"
325325 ? [ currentSelection . index ]
326326 : [ ] ;
327327
You can’t perform that action at this time.
0 commit comments