From bbc845f99f946c7a4da52eb8ea1ddfed077b2147 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Thu, 9 Oct 2025 12:21:55 +0200 Subject: [PATCH] Fix compilation issue after string key renaming. --- .../android/features/space/impl/leave/LeaveSpaceView.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) } }