fix: remove empty files to be downloaded from transaction raw logs
This commit is contained in:
parent
bd5df278be
commit
c5e4efdcd2
1 changed files with 1 additions and 1 deletions
|
|
@ -107,7 +107,7 @@ const DetailsRow = ({ it: tx, timezone }) => {
|
|||
const zip = new JSZip()
|
||||
|
||||
const [fetchSummary] = useLazyQuery(TX_SUMMARY, {
|
||||
onCompleted: data => createCsv(data)
|
||||
onCompleted: data => createCsv(R.filter(it => !R.isEmpty(it), data))
|
||||
})
|
||||
|
||||
const [cancelTransaction] = useMutation(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue