diff --git a/dashboard/src/components/dashboard/ProductGrid.jsx b/dashboard/src/components/dashboard/ProductGrid.jsx
index 4b4b486..51d067d 100644
--- a/dashboard/src/components/dashboard/ProductGrid.jsx
+++ b/dashboard/src/components/dashboard/ProductGrid.jsx
@@ -58,14 +58,6 @@ const ProductGrid = ({
direction: "desc",
});
const [searchQuery, setSearchQuery] = useState("");
- const [columnVisibility, setColumnVisibility] = useState({
- image: true,
- name: true,
- totalQuantity: true,
- totalRevenue: true,
- orderCount: true,
- price: true,
- });
useEffect(() => {
fetchProducts();
@@ -210,11 +202,20 @@ const ProductGrid = ({
)}
+
+
+ setSearchQuery(e.target.value)}
+ className="pl-8 h-9 w-[200px]"
+ />
+