diff --git a/client/src/components/SidePanel/Builder/Action.tsx b/client/src/components/SidePanel/Builder/Action.tsx index b129cc0d15..53b3c9040b 100644 --- a/client/src/components/SidePanel/Builder/Action.tsx +++ b/client/src/components/SidePanel/Builder/Action.tsx @@ -1,32 +1,40 @@ import { useState } from 'react'; import type { Action } from 'librechat-data-provider'; import GearIcon from '~/components/svg/GearIcon'; +import { cn } from '~/utils'; export default function Action({ action, onClick }: { action: Action; onClick: () => void }) { const [isHovering, setIsHovering] = useState(false); return ( -