Skip to content

Commit

Permalink
remove unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
Stef-00012 committed Dec 26, 2024
1 parent 0ec9d9d commit 26bb799
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Select.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { type MouseEvent, useEffect, useRef, useState } from "react";
import React, { useEffect, useRef, useState } from "react";
import SelectIcon from "@/components/images/selectIcon";
import type { Option } from "@/types/select";
import Image from "next/image";
Expand Down Expand Up @@ -39,7 +39,7 @@ export default function Select({
};
}, []);

function handleInputClick(event: MouseEvent<HTMLDivElement>) {
function handleInputClick() {
setShowMenu(!showMenu);
}

Expand Down

0 comments on commit 26bb799

Please sign in to comment.