refactor: remove unused collapse icon from ObjectivesBoard

- Deleted the collapse icon SVG from the ObjectivesBoard component to clean up the code.
- This change simplifies the button layout and improves readability.
This commit is contained in:
Julien Froidefond
2025-09-26 08:32:00 +02:00
parent 65a307c8ac
commit c224c644b1

View File

@@ -143,18 +143,6 @@ export function ObjectivesBoard({
{pinnedTagName}
</Badge>
)}
{/* Flèche de collapse */}
<svg
className={`w-4 h-4 text-[var(--accent)] transition-transform duration-200 ${
isCollapsed ? 'rotate-180' : ''
}`}
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
</svg>
</button>
<div className="flex items-center gap-2">