From c0c4db95a470fb86399bd51900c8828a3fa19436 Mon Sep 17 00:00:00 2001 From: Gazook89 Date: Fri, 24 Apr 2026 10:19:16 -0500 Subject: [PATCH] remove id attribute from component --- client/components/dropdown/dropdown.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/dropdown/dropdown.jsx b/client/components/dropdown/dropdown.jsx index 4cc1cd768..6386c5cda 100644 --- a/client/components/dropdown/dropdown.jsx +++ b/client/components/dropdown/dropdown.jsx @@ -8,7 +8,7 @@ import _ from 'lodash'; // use react context to keep track of the menu depth (menus in menus) const MenuDepthContext = React.createContext(0); -const Dropdown = ({ groupName, className = null, icon, children, color = null, id, customTrigger, dir = 'right', ...props })=>{ +const Dropdown = ({ groupName, className = null, icon, children, color = null, customTrigger, dir = 'right', ...props })=>{ const menuId = `${_.kebabCase(groupName)}-menu`; const anchorName = `--${menuId}`; const depth = React.useContext(MenuDepthContext);