diff --git a/src/presentation/screens/BusStopInfoScreen.tsx b/src/presentation/screens/BusStopInfoScreen.tsx
index 189d2fd..51a761e 100644
--- a/src/presentation/screens/BusStopInfoScreen.tsx
+++ b/src/presentation/screens/BusStopInfoScreen.tsx
@@ -47,6 +47,8 @@ const Table = ({data}: TableProps) => {
return ;
}
+ const [first, second] = cell.lineDescription.split('-');
+
return (
@@ -67,7 +69,10 @@ const Table = ({data}: TableProps) => {
{backgroundColor: `#${cell.backgroundColor}` || 'grey'},
]}>
- {cell.lineDescription}
+ {first}
+
+
+ {second}
{cell.estimatedArrivalTimeInMinutes}
@@ -110,7 +115,9 @@ const BusStopInfoScreen = () => {
)}
-
+
+ {/* {TODO implement footer} */}
+
);
};