Remove unnecessary elvis operator from BrightDisplayScreen

This commit is contained in:
Ensar Sarajčić 2023-10-02 16:54:39 +02:00
parent 62484fd3c7
commit 3a17008fe9
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ internal fun BrightDisplayScreen(
exit = fadeOut()
) {
SleepTimer(
timerText = timerText ?: "",
timerText = timerText,
onCloseClick = onTimerClosePress
)
}