Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Ref #2829: Remove missed copy in rewards summary (#2853)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylehickinson authored Sep 1, 2020
1 parent 59348b4 commit 92ace86
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions BraveRewardsUI/Rewards Summary/RewardsSummaryRowView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ import BraveUI
stackView.addArrangedSubview(cryptoValueLabel)
stackView.setCustomSpacing(4.0, after: cryptoValueLabel)
stackView.addArrangedSubview(cryptoCurrencyLabel)
stackView.addArrangedSubview(dollarValueLabel)
// stackView.addArrangedSubview(dollarValueLabel)

paddingGuide.snp.makeConstraints {
$0.top.bottom.equalTo(self).inset(12.0)
Expand All @@ -64,9 +64,9 @@ import BraveUI
stackView.snp.makeConstraints {
$0.edges.equalTo(paddingGuide)
}
dollarValueLabel.snp.makeConstraints {
$0.width.greaterThanOrEqualTo(60.0)
}
// dollarValueLabel.snp.makeConstraints {
// $0.width.greaterThanOrEqualTo(60.0)
// }
}

convenience init(title: String, cryptoValueColor: UIColor = .black,
Expand All @@ -76,7 +76,7 @@ import BraveUI
cryptoCurrencyLabel.text = Strings.BAT
cryptoValueLabel.text = batValue
cryptoValueLabel.appearanceTextColor = cryptoValueColor
dollarValueLabel.text = usdDollarValue
// dollarValueLabel.text = usdDollarValue
}

@available(*, unavailable)
Expand Down

0 comments on commit 92ace86

Please sign in to comment.