From 314ba7028b0b52cc22630fcb9d3588ca7f0435c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20Flatval?= Date: Wed, 17 Jul 2024 12:08:19 +0200 Subject: [PATCH] chore: lint fix --- react-components/src/query/use3dScenes.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/react-components/src/query/use3dScenes.tsx b/react-components/src/query/use3dScenes.tsx index b95b8e4b568..033900a3e9f 100644 --- a/react-components/src/query/use3dScenes.tsx +++ b/react-components/src/query/use3dScenes.tsx @@ -19,8 +19,8 @@ import { Euler, MathUtils, Matrix4 } from 'three'; import { CDF_TO_VIEWER_TRANSFORMATION } from '@cognite/reveal'; import { type GroundPlane, type Skybox } from '../components/SceneContainer/sceneTypes'; import { - AddCadResourceOptions, - AddPointCloudResourceOptions, + type AddCadResourceOptions, + type AddPointCloudResourceOptions, type AddImage360CollectionDatamodelsOptions } from '../components/Reveal3DResources/types'; @@ -35,7 +35,7 @@ export type SceneData = { cameraEulerRotationX: number; cameraEulerRotationY: number; cameraEulerRotationZ: number; - cadModelOptions: (AddCadResourceOptions | AddPointCloudResourceOptions)[]; + cadModelOptions: Array; image360CollectionOptions: AddImage360CollectionDatamodelsOptions[]; groundPlanes: GroundPlane[]; skybox?: Skybox;