Skip to content

Commit a6c3428

Browse files
committed
feat(join by alias) : small clean up
1 parent 25d39c2 commit a6c3428

File tree

2 files changed

+2
-3
lines changed
  • features

2 files changed

+2
-3
lines changed

features/roomlist/impl/src/main/kotlin/io/element/android/features/roomlist/impl/RoomListView.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ private fun RoomListScaffold(
152152
onClick = onCreateRoomClick
153153
) {
154154
Icon(
155-
// Note cannot use Icons.Outlined.EditSquare, it does not exist :/
156155
imageVector = CompoundIcons.Plus(),
157156
contentDescription = stringResource(id = R.string.screen_roomlist_a11y_create_message),
158157
tint = ElementTheme.colors.iconOnSolidPrimary,

features/securebackup/impl/src/main/kotlin/io/element/android/features/securebackup/impl/reset/password/ResetIdentityPasswordView.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ private fun Content(text: String, onTextChange: (String) -> Unit, hasError: Bool
8383
var showPassword by remember { mutableStateOf(false) }
8484
TextField(
8585
modifier = Modifier
86-
.fillMaxWidth()
87-
.onTabOrEnterKeyFocusNext(LocalFocusManager.current),
86+
.fillMaxWidth()
87+
.onTabOrEnterKeyFocusNext(LocalFocusManager.current),
8888
value = text,
8989
onValueChange = onTextChange,
9090
placeholder = stringResource(CommonStrings.common_password),

0 commit comments

Comments
 (0)