Skip to content

Commit 000ee2c

Browse files
committed
biome
1 parent 29a99f4 commit 000ee2c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/desktop/src/routes/editor/Timeline/ZoomTrack.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
import { createEventListenerMap } from "@solid-primitives/event-listener";
22
import { Menu } from "@tauri-apps/api/menu";
33
import { cx } from "cva";
4+
import { Array, Option } from "effect";
45
import {
56
batch,
67
createMemo,
78
createRoot,
89
createSignal,
910
For,
11+
Match,
1012
Show,
1113
Switch,
1214
} from "solid-js";
1315
import { produce } from "solid-js/store";
14-
import { Array, Option } from "effect";
1516
import { commands } from "~/utils/tauri";
1617
import { useEditorContext } from "../context";
1718
import {
@@ -20,7 +21,6 @@ import {
2021
useTrackContext,
2122
} from "./context";
2223
import { SegmentContent, SegmentHandle, SegmentRoot, TrackRoot } from "./Track";
23-
import { Match } from "solid-js";
2424

2525
export 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

0 commit comments

Comments
 (0)