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 6edb9acc2b
commit ccf34dc631

View file

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