Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
claustra01 committed Aug 17, 2024
1 parent 9c09945 commit 527d28b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/Yatai/YataiTarget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@ export const YataiTarget = (props: ThreeElements["mesh"]) => {

const position = props.position as [number, number, number];
const property = getTargetProperty(position);
const { targetStatus, updateTargetStatus } = useTargetStatusStore((state) => ({
targetStatus: state.targetStatus,
updateTargetStatus: state.updateTargetStatus,
}));
const { targetStatus, updateTargetStatus } = useTargetStatusStore(
(state) => ({
targetStatus: state.targetStatus,
updateTargetStatus: state.updateTargetStatus,
}),
);

//
const size: [number, number, number] = useMemo(() => {
Expand Down

0 comments on commit 527d28b

Please sign in to comment.