diff --git a/features/space/impl/src/main/kotlin/io/element/android/features/space/impl/leave/LeaveSpaceView.kt b/features/space/impl/src/main/kotlin/io/element/android/features/space/impl/leave/LeaveSpaceView.kt index 9c8f13405a..7432301f91 100644 --- a/features/space/impl/src/main/kotlin/io/element/android/features/space/impl/leave/LeaveSpaceView.kt +++ b/features/space/impl/src/main/kotlin/io/element/android/features/space/impl/leave/LeaveSpaceView.kt @@ -176,11 +176,11 @@ private fun LeaveSpaceHeader( ) if (state.showQuickAction) { if (state.areAllSelected) { - QuickActionButton(CommonStrings.common_deselect_all) { + QuickActionButton(CommonStrings.action_deselect_all) { state.eventSink(LeaveSpaceEvents.DeselectAllRooms) } } else { - QuickActionButton(resId = CommonStrings.common_select_all) { + QuickActionButton(resId = CommonStrings.action_select_all) { state.eventSink(LeaveSpaceEvents.SelectAllRooms) } }