From aee8ac5e762ad60d80ac739df16793d41966aa30 Mon Sep 17 00:00:00 2001 From: wass08 Date: Tue, 24 Feb 2026 16:16:07 +0900 Subject: [PATCH] fix build --- apps/editor/components/tools/shared/cursor-sphere.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/editor/components/tools/shared/cursor-sphere.tsx b/apps/editor/components/tools/shared/cursor-sphere.tsx index 641edbe8..c7578fd3 100644 --- a/apps/editor/components/tools/shared/cursor-sphere.tsx +++ b/apps/editor/components/tools/shared/cursor-sphere.tsx @@ -1,13 +1,14 @@ +import type { ThreeElements } from '@react-three/fiber' import { forwardRef } from 'react' import type { Mesh } from 'three' -interface CursorSphereProps extends Omit { +interface CursorSphereProps extends Omit { color?: string depthWrite?: boolean } export const CursorSphere = forwardRef(function CursorSphere( - { color = '#f1c066', ...props }, + { color = '#f1c066', ...props }, ref, ) { return (