Skip to content

Commit

Permalink
Rename prop to 'exported_row_count'
Browse files Browse the repository at this point in the history
  • Loading branch information
Nagesh Pai committed Feb 24, 2025
1 parent f5d0d4b commit 220f241
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/deposits/list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export const DepositsList = (): JSX.Element => {
recordEvent( 'wcpay_csv_export_click', {
row_type: 'payouts',
source: path,
row_count: depositsSummary.count,
exported_row_count: depositsSummary.count,
} );

const userEmail = wcpaySettings.currentUserEmail;
Expand Down
2 changes: 1 addition & 1 deletion client/disputes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ export const DisputesList = (): JSX.Element => {
recordEvent( 'wcpay_csv_export_click', {
row_type: 'disputes',
source: path,
row_count: disputesSummary.count,
exported_row_count: disputesSummary.count,
} );

const userLocale = wcpaySettings.userLocale.code;
Expand Down
2 changes: 1 addition & 1 deletion client/transactions/list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ export const TransactionsList = (
recordEvent( 'wcpay_csv_export_click', {
row_type: 'transactions',
source: path,
row_count: transactionsSummary.count,
exported_row_count: transactionsSummary.count,
} );

const userEmail = wcpaySettings.currentUserEmail;
Expand Down

0 comments on commit 220f241

Please sign in to comment.