Skip to content

Commit c16e96b

Browse files
code format
1 parent cb7ab9d commit c16e96b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/services/mixins/mosque_helpers_mixins.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ mixin MosqueHelpersMixin on ChangeNotifier {
167167
// Convert iqama times to minutes and handle after-midnight cases
168168
List<int> timeMinutes = iqamaTimes.mapIndexed((index, time) {
169169
// For Isha prayer (index 4), if it's very early (e.g. 1:00), treat it as next day
170-
if ((index == 4 || index == 3)&& time.hour < fajrTime.hour) {
170+
if ((index == 4 || index == 3) && time.hour < fajrTime.hour) {
171171
return (time.hour + 24) * 60 + time.minute;
172172
}
173173
return time.hour * 60 + time.minute;

0 commit comments

Comments
 (0)