just moved the hooks into launch/hooks (no needed for a global scoped hooks)

This commit is contained in:
Alan Trebugeais
2026-05-06 23:54:37 +02:00
parent 7f564c90bf
commit 9981f4d1de
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import { useCallback, useEffect, useRef, useState, type PointerEvent, type RefObject } from "react";
import { mergeHudInteractiveBounds, shouldRestoreHudMousePassthroughAfterDrag } from "@/components/launch/hudMousePassthrough";
import { mergeHudInteractiveBounds, shouldRestoreHudMousePassthroughAfterDrag } from "../hudMousePassthrough";
const DEFAULT_RECORDING_HUD_OFFSET = { x: 0, y: 0 };
@@ -1,5 +1,5 @@
import { useCallback, useEffect, useRef, useState, type PointerEvent } from "react";
import { canShowFloatingWebcamPreview } from "@/components/launch/floatingWebcamPreview";
import { canShowFloatingWebcamPreview } from "../floatingWebcamPreview";
const WEBCAM_PREVIEW_DRAG_THRESHOLD = 6;
const DEFAULT_WEBCAM_PREVIEW_OFFSET = { x: 0, y: 0 };