Skip to content

Commit 292c8b8

Browse files
committed
style: ktfmt format
1 parent 4163c78 commit 292c8b8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

app/src/main/java/com/android/periodpals/model/alert/AlertViewModel.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package com.android.periodpals.model.alert
22

33
import android.util.Log
44
import androidx.compose.runtime.State
5-
import androidx.compose.runtime.derivedStateOf
65
import androidx.compose.runtime.mutableStateOf
76
import androidx.lifecycle.ViewModel
87
import androidx.lifecycle.viewModelScope
@@ -79,8 +78,8 @@ class AlertViewModel(private val alertModelSupabase: AlertModelSupabase) : ViewM
7978
}
8079

8180
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 }
8483
}
8584

8685
/**

0 commit comments

Comments
 (0)