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

View File

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