Skip to content

Commit 0233f49

Browse files
fix: remove invalid title prop on Lucide icon components in Planning.tsx
TypeScript strict check rejects 'title' on LucideProps - removed from Pin and Repeat icons
1 parent c8dc3ce commit 0233f49

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

client/src/pages/Planning.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,8 +525,8 @@ const Planning: React.FC = () => {
525525
</p>
526526
<div className="flex flex-shrink-0 items-center">
527527
{entry.specific_date
528-
? <Pin className="mr-0.5 h-2.5 w-2.5 text-amber-500" title="Ponctuel" />
529-
: <Repeat className="mr-0.5 h-2.5 w-2.5 text-muted-foreground/50" title="Récurrent" />
528+
? <Pin className="mr-0.5 h-2.5 w-2.5 text-amber-500" />
529+
: <Repeat className="mr-0.5 h-2.5 w-2.5 text-muted-foreground/50" />
530530
}
531531
<button
532532
type="button"

0 commit comments

Comments
 (0)