Skip to content

Commit

Permalink
refactor: add two blank lines for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
lazarinibruno committed Dec 18, 2024
1 parent 206a722 commit 66f3a3e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ class AlertViewModel(private val alertModelSupabase: AlertModelSupabase) : ViewM

private var _alertsWithinRadius = mutableStateOf<List<Alert>>(listOf())
val alertsWithinRadius: State<List<Alert>> = _alertsWithinRadius

private var alertFilter = mutableStateOf<(Alert) -> Boolean>({ true })

private var _filterAlerts = derivedStateOf {
_alertsWithinRadius.value.filter { alertFilter.value(it) }
}
Expand Down

0 comments on commit 66f3a3e

Please sign in to comment.