diff --git a/src/components/combobox/Combobox.tsx b/src/components/combobox/Combobox.tsx
index 9ce8086..b1788cc 100644
--- a/src/components/combobox/Combobox.tsx
+++ b/src/components/combobox/Combobox.tsx
@@ -4,7 +4,6 @@ import clsx from "clsx";
import { motion, Variants } from "framer-motion";
import { Icon, SearchNormal } from "iconsax-react";
import { ChevronDown } from "lucide-react";
-import Image from "next/image";
import React, { useEffect, useRef, useState } from "react";
export interface ComboboxOption {
@@ -87,14 +86,7 @@ function Combobox({
className: "inline-block mr-1 text-primary dark:text-foreground",
});
const activeImage = selectedOption?.imagePath && (
-
+
);
const variants: Variants = {
@@ -207,10 +199,7 @@ function Combobox({
aria-selected
>
{v?.imagePath ? (
-
+
) : (
v?.icon &&
React.createElement(v.icon, {