Skip to content

Commit 9fc396c

Browse files
committed
fix: remove extra check from "No timetable for today" conditional
1 parent 78037d9 commit 9fc396c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/components/ui/Timetable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const Timetable: React.FC<Props> = ({
131131
</View>
132132
);
133133
})}
134-
{fullSchedule.timetable.length === 0 && !fullSchedule.stop && (
134+
{fullSchedule.timetable.length === 0 && (
135135
<Text style={{ color: 'grey', textAlign: 'center' }}>
136136
No Timetable for Today
137137
</Text>

0 commit comments

Comments
 (0)