File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
app/src/main/java/to/bitkit
ui/screens/wallets/activity Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,6 @@ private fun ActivityDetailContent(
145145 else -> item.v1.timestamp
146146 }
147147 }
148- val totalValue = item.totalValue()
149148 val paymentValue = when (item) {
150149 is Activity .Lightning -> item.v1.value
151150 is Activity .Onchain -> item.v1.value
@@ -168,7 +167,7 @@ private fun ActivityDetailContent(
168167 .padding(vertical = 16 .dp)
169168 ) {
170169 BalanceHeaderView (
171- sats = totalValue.toLong(),
170+ sats = item. totalValue() .toLong(),
172171 prefix = amountPrefix,
173172 showBitcoinSymbol = false ,
174173 modifier = Modifier .weight(1f )
Original file line number Diff line number Diff line change @@ -212,7 +212,6 @@ class ActivityListViewModel @Inject constructor(
212212
213213 updateFilteredActivities()
214214 } finally {
215- // Always re-enable automatic updates
216215 isClearingFilters = false
217216 }
218217 }
You can’t perform that action at this time.
0 commit comments