From 715a44681a9800e9158a4ba73cae5cf9763cb74a Mon Sep 17 00:00:00 2001 From: ganfra Date: Tue, 25 Feb 2025 20:28:05 +0100 Subject: [PATCH] feat(join by alias) : small clean up --- .../io/element/android/features/roomlist/impl/RoomListView.kt | 1 - .../impl/reset/password/ResetIdentityPasswordView.kt | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/features/roomlist/impl/src/main/kotlin/io/element/android/features/roomlist/impl/RoomListView.kt b/features/roomlist/impl/src/main/kotlin/io/element/android/features/roomlist/impl/RoomListView.kt index 6bf916873e..877442ef1b 100644 --- a/features/roomlist/impl/src/main/kotlin/io/element/android/features/roomlist/impl/RoomListView.kt +++ b/features/roomlist/impl/src/main/kotlin/io/element/android/features/roomlist/impl/RoomListView.kt @@ -152,7 +152,6 @@ private fun RoomListScaffold( onClick = onCreateRoomClick ) { Icon( - // Note cannot use Icons.Outlined.EditSquare, it does not exist :/ imageVector = CompoundIcons.Plus(), contentDescription = stringResource(id = R.string.screen_roomlist_a11y_create_message), tint = ElementTheme.colors.iconOnSolidPrimary, diff --git a/features/securebackup/impl/src/main/kotlin/io/element/android/features/securebackup/impl/reset/password/ResetIdentityPasswordView.kt b/features/securebackup/impl/src/main/kotlin/io/element/android/features/securebackup/impl/reset/password/ResetIdentityPasswordView.kt index b8545a271c..998b46046c 100644 --- a/features/securebackup/impl/src/main/kotlin/io/element/android/features/securebackup/impl/reset/password/ResetIdentityPasswordView.kt +++ b/features/securebackup/impl/src/main/kotlin/io/element/android/features/securebackup/impl/reset/password/ResetIdentityPasswordView.kt @@ -83,8 +83,8 @@ private fun Content(text: String, onTextChange: (String) -> Unit, hasError: Bool var showPassword by remember { mutableStateOf(false) } TextField( modifier = Modifier - .fillMaxWidth() - .onTabOrEnterKeyFocusNext(LocalFocusManager.current), + .fillMaxWidth() + .onTabOrEnterKeyFocusNext(LocalFocusManager.current), value = text, onValueChange = onTextChange, placeholder = stringResource(CommonStrings.common_password),