Browse Source

Fix a rendering bug when you send coin from an account to another

master
Gaëtan Renaudeau 7 years ago
parent
commit
94dea24d2d
  1. 2
      src/components/OperationsList/index.js

2
src/components/OperationsList/index.js

@ -119,7 +119,7 @@ export class OperationsList extends PureComponent<Props, State> {
<OperationC
operation={operation}
account={account}
key={operation.id}
key={`${account.id}_${operation.id}`}
onOperationClick={this.handleClickOperation}
t={t}
withAccount={withAccount}

Loading…
Cancel
Save