Skip to content

Commit

Permalink
Merge branch 'main' into zustand-store-implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
adnan-td committed Nov 23, 2023
2 parents 4410585 + be0b8ed commit 16c4e1e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/component/follower_init.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ const defaultRadius = 12 / 2;

export function FollowerInitialiserComponent() {
const [isHovering, setIsHovering] = useState<boolean>(false);

const options = useMouseStore((store) => store.curSettings);
// console.log(options);

useEffect(() => {
const handleMouseLeave = () => {
Expand All @@ -37,6 +35,7 @@ export function FollowerInitialiserComponent() {
}

function ManagePosition({ options }: { options: MouseSettings }) {

const [pos, setPos] = useState<MousePosition>({
x: 0,
y: 0,
Expand Down

0 comments on commit 16c4e1e

Please sign in to comment.