Skip to content

Commit d944adc

Browse files
authored
Merge pull request #214 from Bitcoin-com/develop
v0.13.0 - SLP Sweeping
2 parents 386ef07 + 3b7ccbc commit d944adc

24 files changed

+3136
-3272
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ android {
135135
applicationId "com.badgermobile"
136136
minSdkVersion rootProject.ext.minSdkVersion
137137
targetSdkVersion rootProject.ext.targetSdkVersion
138-
versionCode 9000016
139-
versionName "1.9.5"
138+
versionCode 9000018
139+
versionName "1.10.0"
140140
missingDimensionStrategy 'react-native-camera', 'general'
141141
}
142142
splits {
13.2 KB
Loading
11.2 KB
Loading
6.2 KB
Loading

components/TransactionRow/TransactionRow.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -150,12 +150,13 @@ const TransactionRow = ({
150150
<T>{typeFormatted}</T>
151151
</InfoArea>
152152
<AmountArea>
153-
{type !== "interwallet" && (
154-
<T>
155-
{type === "send" ? "-" : "+"}
156-
{amount}
157-
</T>
158-
)}
153+
<T>
154+
{type === "interwallet"
155+
? `${amount}`
156+
: type === "send"
157+
? `- ${amount}`
158+
: `+ ${amount}`}
159+
</T>
159160
</AmountArea>
160161
</AmountRow>
161162
<MetaRow>

0 commit comments

Comments
 (0)