Skip to content

Commit

Permalink
chore: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
haakonflatval-cognite committed Jul 17, 2024
1 parent 7e1037d commit 314ba70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions react-components/src/query/use3dScenes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand All @@ -35,7 +35,7 @@ export type SceneData = {
cameraEulerRotationX: number;
cameraEulerRotationY: number;
cameraEulerRotationZ: number;
cadModelOptions: (AddCadResourceOptions | AddPointCloudResourceOptions)[];
cadModelOptions: Array<AddCadResourceOptions | AddPointCloudResourceOptions>;
image360CollectionOptions: AddImage360CollectionDatamodelsOptions[];
groundPlanes: GroundPlane[];
skybox?: Skybox;
Expand Down

0 comments on commit 314ba70

Please sign in to comment.