fix: remove unused imports flagged by TypeScript

This commit is contained in:
Viktor Barzin 2026-02-28 16:23:36 +00:00
parent ab02fb120c
commit dea930dbc4
No known key found for this signature in database
GPG key ID: 0EB088298288D958
5 changed files with 3 additions and 23 deletions

View file

@ -11,15 +11,6 @@ interface ListingDetailProps {
onClearDecision: () => void;
}
function TravelModeIcon({ mode }: { mode: string }) {
switch (mode) {
case 'WALK': return <Footprints className="h-3 w-3" />;
case 'BICYCLE': return <Bike className="h-3 w-3" />;
case 'TRANSIT': return <Train className="h-3 w-3" />;
default: return null;
}
}
function TravelModeLabel({ mode }: { mode: string }) {
switch (mode) {
case 'WALK': return 'Walk';