Skip to content

Commit

Permalink
manager: Fix select kmi not working
Browse files Browse the repository at this point in the history
  • Loading branch information
tiann committed Apr 23, 2024
1 parent 472a94b commit ac4c6f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ fun rememberSelectKmiDialog(onSelected: (String?) -> Unit): DialogHandle {
)
}

var selection: String? = null
var selection by remember { mutableStateOf<String?>(null) }
ListDialog(state = rememberUseCaseState(visible = true, onFinishedRequest = {
onSelected(selection)
}, onCloseRequest = {
Expand Down

0 comments on commit ac4c6f7

Please sign in to comment.