Skip to content

Commit

Permalink
fix: Fix strange transaction details #2626
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Apr 26, 2024
1 parent 94a482c commit 9737bea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/dashboard/connection/operation/cubit/operation_state.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ class OperationState extends Equatable {
return OperationState(
status: status ?? this.status,
message: message,
amount: amount ?? this.usdRate,
fee: fee ?? this.usdRate,
amount: amount ?? this.amount,
fee: fee ?? this.fee,
usdRate: usdRate ?? this.usdRate,
cryptoAccountData: cryptoAccountData ?? this.cryptoAccountData,
dAppName: dAppName ?? this.dAppName,
Expand Down

0 comments on commit 9737bea

Please sign in to comment.