Hi all, is it bad practice to have selectableGroup() semantics modifier on a container of a single selectable item? eg if there is list that is dynamic and could be of size 1
example
Copy code
Column(Modifier.selectableGroup()) {
items.forEach {
SelectableComposable(..) // could be just one item
}
}