From 3a17008fe9873b414efe28ec1cdb8e482a030c46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Mon, 2 Oct 2023 16:54:39 +0200 Subject: [PATCH] Remove unnecessary elvis operator from BrightDisplayScreen --- .../simplemobiletools/flashlight/screens/BrightDisplayScreen.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/flashlight/screens/BrightDisplayScreen.kt b/app/src/main/kotlin/com/simplemobiletools/flashlight/screens/BrightDisplayScreen.kt index b7d2992..37105d2 100644 --- a/app/src/main/kotlin/com/simplemobiletools/flashlight/screens/BrightDisplayScreen.kt +++ b/app/src/main/kotlin/com/simplemobiletools/flashlight/screens/BrightDisplayScreen.kt @@ -65,7 +65,7 @@ internal fun BrightDisplayScreen( exit = fadeOut() ) { SleepTimer( - timerText = timerText ?: "", + timerText = timerText, onCloseClick = onTimerClosePress ) }