Skip to content

Commit dadb564

Browse files
authored
Merge pull request #4966 from woocommerce/issue/4333-pinks
[Mobile Payments] [Several Readers Found] Fix dark mode button color
2 parents 109249e + 576ecbf commit dadb564

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

WooCommerce/Classes/ViewRelated/ReusableViews/LabelAndButtonTableViewCell.swift

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,15 @@ final class LabelAndButtonTableViewCell: UITableViewCell {
66

77
// TODO: Private outlets, configure method
88
// TODO: Button completion
9+
10+
override func awakeFromNib() {
11+
super.awakeFromNib()
12+
configureButton()
13+
}
14+
}
15+
16+
private extension LabelAndButtonTableViewCell {
17+
func configureButton() {
18+
button.tintColor = .accent
19+
}
920
}

0 commit comments

Comments
 (0)