File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 33/**
44 * External dependencies
55 */
6- import React , { useState } from 'react' ;
6+ import React from 'react' ;
77import { recordEvent } from 'tracks' ;
88import { __ , _n , sprintf } from '@wordpress/i18n' ;
99import { TableCard , Link } from '@woocommerce/components' ;
@@ -194,9 +194,9 @@ export const DepositsList = (): JSX.Element => {
194194 ) ,
195195 } ,
196196 net : {
197- value : formatExportAmount ( deposit . net , deposit . currency ) ,
197+ value : formatExportAmount ( deposit . amount , deposit . currency ) ,
198198 display : clickable (
199- formatExplicitCurrency ( deposit . net , deposit . currency )
199+ formatExplicitCurrency ( deposit . amount , deposit . currency )
200200 ) ,
201201 } ,
202202 status : {
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ export interface CachedDeposit {
3030 currency : string ;
3131 fee_percentage : number ;
3232 fee : number ;
33- net : number ;
3433 status : DepositStatus ;
3534 bankAccount : string ;
3635 automatic : boolean ;
You can’t perform that action at this time.
0 commit comments