fix: linter

This commit is contained in:
Maze Winther 2026-04-13 22:00:29 +02:00
parent 270e2951b1
commit ba994d8bf9
1 changed files with 2 additions and 1 deletions

View File

@ -153,7 +153,7 @@ function getDragDropTarget({
interface StartDragParams
extends Omit<
ElementDragState,
"isDragging" | "currentTime" | "currentMouseY"
"isDragging" | "currentTime" | "currentMouseY" | "dragElementIds" | "dragTimeOffsets"
> {
initialCurrentTime: number;
initialCurrentMouseY: number;
@ -177,6 +177,7 @@ export function useElementInteraction({
...sceneTracks.audio,
];
const {
selectedElements,
isElementSelected,
selectElement,
handleElementClick: handleSelectionClick,