Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
JollyGrin committed Sep 29, 2024
1 parent 76c2cd3 commit e527dd6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/atoms/mock-cards/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ export const CardImage = ({
const isHovering = useHover(hoverRef);

const { key, ...options } = LOCALSTORAGE_KEYS.SETTINGS.rotateEnemy;
const [rotateEnemy, setRotateEnemy] = useLocalStorage(key, false, options);

console.log("card", { rotateEnemy });
const [rotateEnemy] = useLocalStorage(key, false, options);

const isPressed = useKeyPress("Alt");
const [preview, setPreview] = useState(false);
Expand Down

0 comments on commit e527dd6

Please sign in to comment.