From 80e70a6834c729a587bd2e4c68bd0d4e7834b673 Mon Sep 17 00:00:00 2001 From: David Langley Date: Tue, 24 Oct 2023 19:15:14 +0100 Subject: [PATCH] Fix indentation --- .../RoomNotificationSettingsNode.kt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/features/roomdetails/impl/src/main/kotlin/io/element/android/features/roomdetails/impl/notificationsettings/RoomNotificationSettingsNode.kt b/features/roomdetails/impl/src/main/kotlin/io/element/android/features/roomdetails/impl/notificationsettings/RoomNotificationSettingsNode.kt index 4f3265ea1f..8ccdd3b158 100644 --- a/features/roomdetails/impl/src/main/kotlin/io/element/android/features/roomdetails/impl/notificationsettings/RoomNotificationSettingsNode.kt +++ b/features/roomdetails/impl/src/main/kotlin/io/element/android/features/roomdetails/impl/notificationsettings/RoomNotificationSettingsNode.kt @@ -65,11 +65,11 @@ class RoomNotificationSettingsNode @AssistedInject constructor( @Composable override fun View(modifier: Modifier) { val state = presenter.present() - RoomNotificationSettingsView( - state = state, - modifier = modifier, - onShowGlobalNotifications = this::openGlobalNotificationSettings, - onBackPressed = this::navigateUp, - ) + RoomNotificationSettingsView( + state = state, + modifier = modifier, + onShowGlobalNotifications = this::openGlobalNotificationSettings, + onBackPressed = this::navigateUp, + ) } }