Skip to content
This repository has been archived by the owner on Mar 7, 2021. It is now read-only.

Commit

Permalink
Remove default value- googleapis can handle undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
baruchiro committed Feb 2, 2020
1 parent 8daf5b8 commit 8179221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/spreadsheet/spreadsheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function convertTransactionObjectToArrays(transactionObject) {
Object.values(transactionObject).forEach((transaction) => {
const transactionRow = [];
headers.forEach((header) => {
transactionRow.push(transaction[header] || '');
transactionRow.push(transaction[header]);
});
rows.push(transactionRow);
});
Expand Down

0 comments on commit 8179221

Please sign in to comment.