We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20dbd69 commit ed6dfa3Copy full SHA for ed6dfa3
app/src/components/xr/panels/staging/Lighting.tsx
@@ -1,12 +1,12 @@
1
-import { LightDetails, useLightStore } from "@/stores/lightStore";
+import { useLightStore } from "@/stores/lightStore";
2
import { Container, Text } from "@react-three/uikit"
3
import { Button, colors, Slider } from "@react-three/uikit-default";
4
import { Trash } from "@react-three/uikit-lucide";
5
import { useEffect } from "react";
6
import { useState } from "react";
7
8
export const Lighting = () => {
9
- const { selectedLightId, lightDetails } = useLightStore();
+ const { selectedLightId } = useLightStore();
10
11
const [lightID, setLightID] = useState<string | null>(null);
12
0 commit comments