diff --git a/frontend/src/components/shared/QuickAccessBar.tsx b/frontend/src/components/shared/QuickAccessBar.tsx index 9abbb9ce5..4dc570772 100644 --- a/frontend/src/components/shared/QuickAccessBar.tsx +++ b/frontend/src/components/shared/QuickAccessBar.tsx @@ -11,7 +11,6 @@ import { useToolWorkflow } from '../../contexts/ToolWorkflowContext'; import { ButtonConfig } from '../../types/sidebar'; import './quickAccessBar/QuickAccessBar.css'; import AllToolsNavButton from './AllToolsNavButton'; -import { Tooltip } from './Tooltip'; import TopToolIndicator from './quickAccessBar/TopToolIndicator'; import { isNavButtonActive, @@ -58,7 +57,6 @@ const QuickAccessBar = forwardRef(({ id: 'read', name: 'Read', icon: , - tooltip: 'Read documents', size: 'lg', isRound: false, type: 'navigation', @@ -74,7 +72,6 @@ const QuickAccessBar = forwardRef(({ signature , - tooltip: 'Sign your document', size: 'lg', isRound: false, type: 'navigation', @@ -87,7 +84,6 @@ const QuickAccessBar = forwardRef(({ automation , - tooltip: 'Automate workflows', size: 'lg', isRound: false, type: 'navigation', @@ -97,7 +93,6 @@ const QuickAccessBar = forwardRef(({ id: 'files', name: 'Files', icon: , - tooltip: 'Manage files', isRound: true, size: 'lg', type: 'modal', @@ -110,7 +105,6 @@ const QuickAccessBar = forwardRef(({ vital_signs , - tooltip: 'View activity and analytics', isRound: true, size: 'lg', type: 'navigation', @@ -120,7 +114,6 @@ const QuickAccessBar = forwardRef(({ id: 'config', name: 'Config', icon: , - tooltip: 'Configure settings', size: 'lg', type: 'modal', onClick: () => { @@ -169,7 +162,7 @@ const QuickAccessBar = forwardRef(({ {buttonConfigs.slice(0, -1).map((config, index) => ( - +
(({ {config.name}
-
+ {/* Add divider after Automate button (index 2) */} {index === 2 && ( @@ -209,7 +202,6 @@ const QuickAccessBar = forwardRef(({ {buttonConfigs .filter(config => config.id === 'config') .map(config => ( -
(({ {config.name}
-
))} diff --git a/frontend/src/types/sidebar.ts b/frontend/src/types/sidebar.ts index b286f0b82..b93db61d6 100644 --- a/frontend/src/types/sidebar.ts +++ b/frontend/src/types/sidebar.ts @@ -32,7 +32,6 @@ export interface ButtonConfig { id: string; name: string; icon: React.ReactNode; - tooltip: string; isRound?: boolean; size?: 'sm' | 'md' | 'lg' | 'xl'; onClick: () => void;