File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
app/src/main/java/to/bitkit/ui/screens/wallets/activity Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import androidx.compose.foundation.layout.navigationBarsPadding
1010import androidx.compose.foundation.layout.padding
1111import androidx.compose.foundation.layout.wrapContentHeight
1212import androidx.compose.runtime.Composable
13+ import androidx.compose.runtime.LaunchedEffect
1314import androidx.compose.runtime.getValue
1415import androidx.compose.ui.Alignment
1516import androidx.compose.ui.Modifier
@@ -37,6 +38,10 @@ fun TagSelectorSheet() {
3738 val availableTags by activity.availableTags.collectAsStateWithLifecycle()
3839 val selectedTags by activity.selectedTags.collectAsStateWithLifecycle()
3940
41+ LaunchedEffect (Unit ) {
42+ activity.updateAvailableTags()
43+ }
44+
4045 Content (
4146 availableTags = availableTags,
4247 selectedTags = selectedTags,
You can’t perform that action at this time.
0 commit comments