Skip to content

Commit

Permalink
Update checkpoints and dumps
Browse files Browse the repository at this point in the history
- Fix percent diff signs
  • Loading branch information
ant013 committed Jun 13, 2024
1 parent 9878466 commit 8cacb9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions UnstoppableWallet/UnstoppableWallet.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -13263,7 +13263,7 @@
repositoryURL = "https://github.com/horizontalsystems/MarketKit.Swift";
requirement = {
kind = exactVersion;
version = 3.0.10;
version = 3.0.11;
};
};
D3604E7D28F03C1D0066C366 /* XCRemoteSwiftPackageReference "Chart" */ = {
Expand Down Expand Up @@ -13391,7 +13391,7 @@
repositoryURL = "https://github.com/horizontalsystems/Checkpoints";
requirement = {
kind = exactVersion;
version = 1.0.17;
version = 1.0.18;
};
};
D3C187CD290FCF2D00FE1900 /* XCRemoteSwiftPackageReference "ThemeKit" */ = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ extension ValueFormatter {
formatFull(currency: currencyValue.currency, value: currencyValue.value, signType: signType)
}

func format(percentValue: Decimal, signType: SignType = .never) -> String? {
func format(percentValue: Decimal, signType: SignType = .always) -> String? {
let (transformedValue, digits) = transformedFull(value: percentValue, maxDigits: 2)

let string: String? = rawFormatterQueue.sync {
Expand Down

0 comments on commit 8cacb9b

Please sign in to comment.