Fix compilation issue after string key renaming.

This commit is contained in:
Benoit Marty
2025-10-09 12:21:55 +02:00
parent eb371b99e6
commit bbc845f99f

View File

@@ -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)
}
}