File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -713,7 +713,7 @@ export default function CSVDownloader() {
713
713
714
714
#### Data as a Function/Callback
715
715
716
- ` data={} ` can be a function that returns a data object.
716
+ ` data={} ` can be a synchronous or asynchronous function that returns a data object.
717
717
718
718
``` javascript
719
719
import React from ' react' ;
Original file line number Diff line number Diff line change @@ -28,13 +28,13 @@ function useCSVDownloaderComponent() {
28
28
bom = false ,
29
29
config = { } ,
30
30
} : Props ) => {
31
- const download = ( ) => {
31
+ const download = async ( ) => {
32
32
const bomCode = bom ? '\ufeff' : '' ;
33
33
let csvContent = null ;
34
34
let csvURL = null ;
35
35
36
36
if ( typeof data === 'function' ) {
37
- data = data ( ) ;
37
+ data = await data ( ) ;
38
38
}
39
39
40
40
if ( typeof data === 'object' ) {
You can’t perform that action at this time.
0 commit comments