fix: use CheckCircle2 instead of CircleCheck (not in lucide-react)

This commit is contained in:
Maurice
2026-04-11 22:47:52 +02:00
parent 5564bce133
commit 2d9f545c57
+3 -3
View File
@@ -15,7 +15,7 @@ import { useToast } from '../components/shared/Toast'
import { import {
Plus, Calendar, Trash2, Edit2, Map, ChevronDown, ChevronUp, Plus, Calendar, Trash2, Edit2, Map, ChevronDown, ChevronUp,
Archive, ArchiveRestore, Clock, MapPin, Settings, X, ArrowRightLeft, Users, Archive, ArchiveRestore, Clock, MapPin, Settings, X, ArrowRightLeft, Users,
LayoutGrid, List, Copy, Bell, CircleCheck, LayoutGrid, List, Copy, Bell, CheckCircle2,
} from 'lucide-react' } from 'lucide-react'
import { useCanDo } from '../store/permissionsStore' import { useCanDo } from '../store/permissionsStore'
@@ -316,7 +316,7 @@ function MobileTripCard({ trip, onEdit, onCopy, onDelete, onArchive, onClick, t,
{status === 'ongoing' ? ( {status === 'ongoing' ? (
<span className="w-1.5 h-1.5 rounded-full bg-red-500 shadow-[0_0_6px_rgba(239,68,68,0.8)] animate-pulse" /> <span className="w-1.5 h-1.5 rounded-full bg-red-500 shadow-[0_0_6px_rgba(239,68,68,0.8)] animate-pulse" />
) : status === 'past' ? ( ) : status === 'past' ? (
<CircleCheck size={10} /> <CheckCircle2 size={10} />
) : ( ) : (
<Clock size={10} /> <Clock size={10} />
)} )}
@@ -408,7 +408,7 @@ function TripCard({ trip, onEdit, onCopy, onDelete, onArchive, onClick, t, local
{status === 'ongoing' ? ( {status === 'ongoing' ? (
<span className="w-1.5 h-1.5 rounded-full bg-red-500 shadow-[0_0_6px_rgba(239,68,68,0.8)] animate-pulse" /> <span className="w-1.5 h-1.5 rounded-full bg-red-500 shadow-[0_0_6px_rgba(239,68,68,0.8)] animate-pulse" />
) : status === 'past' ? ( ) : status === 'past' ? (
<CircleCheck size={10} /> <CheckCircle2 size={10} />
) : ( ) : (
<Clock size={10} /> <Clock size={10} />
)} )}