File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
app/src/main/java/com/android/periodpals/model/alert Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package com.android.periodpals.model.alert
2
2
3
3
import android.util.Log
4
4
import androidx.compose.runtime.State
5
- import androidx.compose.runtime.derivedStateOf
6
5
import androidx.compose.runtime.mutableStateOf
7
6
import androidx.lifecycle.ViewModel
8
7
import androidx.lifecycle.viewModelScope
@@ -79,8 +78,8 @@ class AlertViewModel(private val alertModelSupabase: AlertModelSupabase) : ViewM
79
78
}
80
79
81
80
fun getPalAlerts (uid : String ): List <Alert >? {
82
- val palAlertList: List <Alert >? = getAllAlerts()
83
- return palAlertList?.filter { it.uid != uid }
81
+ val palAlertList: List <Alert >? = getAllAlerts()
82
+ return palAlertList?.filter { it.uid != uid }
84
83
}
85
84
86
85
/* *
You can’t perform that action at this time.
0 commit comments