diff options
Diffstat (limited to 'src/frontend/app/components/StopItem.tsx')
| -rw-r--r-- | src/frontend/app/components/StopItem.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/frontend/app/components/StopItem.tsx b/src/frontend/app/components/StopItem.tsx index 7d89d7d..ae51df8 100644 --- a/src/frontend/app/components/StopItem.tsx +++ b/src/frontend/app/components/StopItem.tsx @@ -17,7 +17,9 @@ const StopItem: React.FC<StopItemProps> = ({ stop }) => { {stop.favourite && <span className="favourite-icon">★</span>} ( {stop.stopId}) {StopDataProvider.getDisplayName(region, stop)} <div className="line-icons"> - {stop.lines?.map((line) => <LineIcon key={line} line={line} region={region} />)} + {stop.lines?.map((line) => ( + <LineIcon key={line} line={line} region={region} /> + ))} </div> </Link> </li> |
