diff --git a/package.json b/package.json index f6c6fa5..fb51e2c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "i24-daq-ui", "private": true, - "version": "0.0.4-dev", + "version": "0.0.6", "type": "module", "scripts": { "dev": "vite", diff --git a/src/screens/OavMover/OAVStageController.tsx b/src/screens/OavMover/OAVStageController.tsx index db12610..e55204c 100644 --- a/src/screens/OavMover/OAVStageController.tsx +++ b/src/screens/OavMover/OAVStageController.tsx @@ -3,9 +3,9 @@ import { OAVSideBar } from "./OAVSideBar"; import { submitAndRunPlanImmediately } from "#/blueapi/blueapi.ts"; import { readVisitFromPv, parseInstrumentSession } from "#/blueapi/visit.ts"; import { OavVideoStream } from "#/components/OavVideoStream.tsx"; -import { useConfigCall } from "#/config_server/configServer"; -import { forceString, useParsedPvConnection } from "#/pv/util"; -import { ZoomLevels } from "#/pv/enumPvValues"; +import { useConfigCall } from "#/config_server/configServer.ts"; +import { forceString, useParsedPvConnection } from "#/pv/util.ts"; +import { ZoomLevels } from "#/pv/enumPvValues.ts"; import { useMemo } from "react"; export function OavMover() { @@ -20,7 +20,7 @@ export function OavMover() { }), ); const zoomIndex = ZoomLevels.findIndex( - (element) => element == currentZoomValue, + (element: string) => element == currentZoomValue, ); const [crosshairX, crosshairY] = useMemo(() => {