fix: remove unused imports flagged by TypeScript
This commit is contained in:
parent
ab02fb120c
commit
dea930dbc4
5 changed files with 3 additions and 23 deletions
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue