Skip to content

Commit

Permalink
Merge branch 'PE-6783-small-ui-fixes' into PE-6751
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagocarvalhodev committed Oct 9, 2024
2 parents 1a39ba4 + 36e7af6 commit 64d6b43
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/components/payment_method_selector_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,12 @@ class _PaymentMethodSelectorState extends State<PaymentMethodSelector> {

ArDriveIcon _buildCoinIcon() {
if (_selectedMethod == UploadMethod.ar) {
return ArDriveIcons.arweaveCoin();
return ArDriveIcons.arweaveCoin(
size: 16,
);
} else {
return ArDriveIcons.turboCoin(
size: 28,
size: 16,
color: ArDriveTheme.of(context).themeData.colorTokens.containerRed,
);
}
Expand Down

0 comments on commit 64d6b43

Please sign in to comment.