From fe90ef0b8ce7cc6a2ab303279dd2f3b580b04d19 Mon Sep 17 00:00:00 2001 From: Julian Waller Date: Wed, 11 Sep 2024 18:14:49 +0100 Subject: [PATCH] chore: fix type check --- webui/src/Stores/SurfacesStore.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/src/Stores/SurfacesStore.tsx b/webui/src/Stores/SurfacesStore.tsx index 3e10d45972..c2da1bba5c 100644 --- a/webui/src/Stores/SurfacesStore.tsx +++ b/webui/src/Stores/SurfacesStore.tsx @@ -5,7 +5,7 @@ import type { OutboundSurfacesUpdate, ClientSurfaceItem, } from '@companion-app/shared/Model/Surfaces.js' -import { action, observable, toJS } from 'mobx' +import { action, observable } from 'mobx' import { assertNever } from '../util.js' import { applyPatch } from 'fast-json-patch' import { cloneDeep } from 'lodash-es'