Skip to content

Commit

Permalink
fix: pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
AhsanRns committed May 2, 2024
1 parent 2fe14a9 commit ecc8db2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions easel/lib/models/denom.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class Denom {
}

static List<Denom> get availableDenoms => [
Denom(name: kUSDText, symbol: kUsdSymbol, icon: PngUtils.kIconDenomUsd),
Denom(name: kPylonText, symbol: kPylonSymbol, icon: PngUtils.kIconDenomPylon),
Denom(name: kStripeText, symbol: kUsdSymbol, icon: PngUtils.kIconDenomUsd),
Denom(name: kIAPText, symbol: kPylonSymbol, icon: PngUtils.kIconDenomPylon),
];

TextInputFormatter getFormatter() {
Expand Down
2 changes: 1 addition & 1 deletion easel/lib/screens/publish_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ class _OwnerBottomDrawerState extends State<OwnerBottomDrawer> {
children: [
buildRow(
title: LocaleKeys.currency.tr(),
subtitle: widget.nft.isFreeDrop == FreeDrop.yes.name ? kPylonText : getCurrency(),
subtitle: widget.nft.isFreeDrop == FreeDrop.yes.name ? kIAPText : getCurrency(),
),
SizedBox(height: 5.h),
buildRow(title: LocaleKeys.price.tr(), subtitle: getPriceSubtitle()),
Expand Down
4 changes: 2 additions & 2 deletions easel/lib/utils/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ const kAgoricSymbol = 'urun';
const kJunoSymbol = 'ujunox';
const String kEthereumSymbol = "weth-wei";

const kPylonText = 'IAP';
const kUSDText = 'Stripe';
const kIAPText = 'IAP';
const kStripeText = 'Stripe';
const kAtomText = 'Atom';
const kEurText = 'EEur';
const kAgoricText = 'Agoric';
Expand Down

0 comments on commit ecc8db2

Please sign in to comment.