Enable leave space entry point.

This commit is contained in:
Benoit Marty 2025-09-30 14:50:13 +02:00 committed by Benoit Marty
parent fb346a1587
commit 21aa94aa4a

View file

@ -202,7 +202,7 @@ private fun LoadingMoreIndicator(
private fun SpaceViewTopBar( private fun SpaceViewTopBar(
currentSpace: SpaceRoom?, currentSpace: SpaceRoom?,
onBackClick: () -> Unit, onBackClick: () -> Unit,
@Suppress("unused") onLeaveSpaceClick: () -> Unit, onLeaveSpaceClick: () -> Unit,
onShareSpace: () -> Unit, onShareSpace: () -> Unit,
modifier: Modifier = Modifier, modifier: Modifier = Modifier,
) { ) {
@ -247,8 +247,6 @@ private fun SpaceViewTopBar(
) )
} }
) )
/*
// TODO re-enable when we have SDK APIs to leave a space
DropdownMenuItem( DropdownMenuItem(
onClick = { onClick = {
showMenu = false showMenu = false
@ -263,7 +261,6 @@ private fun SpaceViewTopBar(
) )
} }
) )
*/
} }
}, },
) )