Skip to content

Commit 33ba082

Browse files
committed
fix: close sheet when selecting a tag
1 parent 9df7be7 commit 33ba082

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/src/main/java/to/bitkit/ui/screens/wallets/activity/TagSelectorSheet.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ fun TagSelectorSheet() {
4040
Content(
4141
availableTags = availableTags,
4242
selectedTags = selectedTags,
43-
onTagClick = { activity.toggleTag(it) },
43+
onTagClick = {
44+
activity.toggleTag(it)
45+
app.hideSheet()
46+
},
4447
)
4548
}
4649

0 commit comments

Comments
 (0)