Skip to content

Commit

Permalink
Fixed ktlint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
leahlud committed Feb 18, 2024
1 parent fcad83d commit c9b7284
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class DayFragment : Fragment(), EventClickListener {
viewModel?.isLoaded?.postValue(true)
}
}
}
},
)
}, 100L)
} else {
Expand All @@ -97,7 +97,7 @@ class DayFragment : Fragment(), EventClickListener {
// Log.d("Observe showShifts", "Switching to SCHEDULE")
updateEvents(currentEvents)
}
}
},
)
view.postDelayed({
liveShiftData?.observe(
Expand All @@ -109,7 +109,7 @@ class DayFragment : Fragment(), EventClickListener {
mAdapter.updateEvents(insertTimeItems(currentShifts))
}
}
}
},
)
}, 100)
}
Expand All @@ -120,15 +120,15 @@ class DayFragment : Fragment(), EventClickListener {
Observer {
showFavorites = it
updateEvents(currentEvents)
}
},
)
}
}

override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
savedInstanceState: Bundle?,
): View? {
val view = inflater.inflate(R.layout.fragment_schedule_day, container, false)
return view
Expand Down

0 comments on commit c9b7284

Please sign in to comment.