Skip to content

Commit 866d3f9

Browse files
committed
feat: update CustomTabRowWithSpacing.kt to be generic
1 parent dd35520 commit 866d3f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ fun ActivityListFilter(
100100
}
101101
}
102102

103-
enum class ActivityTab {
103+
enum class ActivityTab : TabItem {
104104
ALL, SENT, RECEIVED, OTHER;
105105

106-
val uiText: String
106+
override val uiText: String
107107
@Composable
108108
get() = when (this) {
109109
ALL -> stringResource(R.string.wallet__activity_tabs__all)

0 commit comments

Comments
 (0)