Skip to content

Commit

Permalink
fix: use payoutCurrency in payout currency dropdown (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethan-tbd authored Jul 17, 2024
1 parent eb52260 commit 304053f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/features/payout/payout.dart
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class Payout extends HookWidget {
switch (transactionType) {
case TransactionType.withdraw:
return CurrencyDropdown(
paymentCurrency: state.value?.payinCurrency ?? '',
paymentCurrency: state.value?.payoutCurrency ?? '',
state: state,
);
case TransactionType.deposit:
Expand Down

0 comments on commit 304053f

Please sign in to comment.