diff options
Diffstat (limited to 'src/frontend/app/components/StopGalleryItem.tsx')
| -rw-r--r-- | src/frontend/app/components/StopGalleryItem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/app/components/StopGalleryItem.tsx b/src/frontend/app/components/StopGalleryItem.tsx index 0af14bc..b32661a 100644 --- a/src/frontend/app/components/StopGalleryItem.tsx +++ b/src/frontend/app/components/StopGalleryItem.tsx @@ -23,7 +23,7 @@ const StopGalleryItem: React.FC<StopGalleryItemProps> = ({ stop }) => { {StopDataProvider.getDisplayName(region, stop)} </div> <div className="gallery-item-lines"> - {stop.lines?.slice(0, 6).map((line) => ( + {stop.lines?.slice(0, 5).map((line) => ( <LineIcon key={line} line={line} region={region} /> ))} {stop.lines && stop.lines.length > 5 && ( |
