File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
app/src/main/java/org/nsh07/pomodoro/ui/settingsScreen Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -280,7 +280,8 @@ private fun SettingsScreen(
280280 AlarmSettings (
281281 settingsState = settingsState,
282282 onAction = onAction,
283- onBack = backStack::removeLastOrNull
283+ onBack = backStack::removeLastOrNull,
284+ modifier = modifier,
284285 )
285286 }
286287 entry<Screen .Settings .Appearance > {
@@ -289,7 +290,8 @@ private fun SettingsScreen(
289290 isPlus = isPlus,
290291 onAction = onAction,
291292 setShowPaywall = setShowPaywall,
292- onBack = backStack::removeLastOrNull
293+ onBack = backStack::removeLastOrNull,
294+ modifier = modifier,
293295 )
294296 }
295297 entry<Screen .Settings .Timer > {
@@ -304,6 +306,7 @@ private fun SettingsScreen(
304306 onAction = onAction,
305307 setShowPaywall = setShowPaywall,
306308 onBack = backStack::removeLastOrNull,
309+ modifier = modifier,
307310 )
308311 }
309312 }
You can’t perform that action at this time.
0 commit comments