diff --git a/lib/features/transaction/transaction.dart b/lib/features/transaction/transaction.dart index 5bba7c8..cd67f18 100644 --- a/lib/features/transaction/transaction.dart +++ b/lib/features/transaction/transaction.dart @@ -69,11 +69,12 @@ class Transaction { } } - type = (payinCurrency == 'USDC') - ? TransactionType.withdraw - : (payoutCurrency == 'USDC') - ? TransactionType.deposit - : type; + // TODO(ethan-tbd): uncomment once deposit/withdraw is supported + // type = (payinCurrency == 'USDC') + // ? TransactionType.withdraw + // : (payoutCurrency == 'USDC') + // ? TransactionType.deposit + // : type; return Transaction( payinAmount: payinAmount,