diff --git a/src/features/editor/components/header/action-buttons.tsx b/src/features/editor/components/header/action-buttons.tsx index 8980078..d24a82b 100644 --- a/src/features/editor/components/header/action-buttons.tsx +++ b/src/features/editor/components/header/action-buttons.tsx @@ -49,7 +49,10 @@ export const AnimatedActionButton: React.FC = ({ if (state === 'overflow') return 'bg-destructive text-destructive-foreground shadow-sm hover:!bg-destructive/90'; - return 'bg-primary text-primary-foreground shadow hover:!bg-primary/90'; + if (state === 'idle') + return 'bg-primary text-primary-foreground shadow hover:!bg-primary/90'; + + return ''; }, [state]); return (