Skip to content

Commit

Permalink
fix: csv export is sharing a file path string but not the file on And…
Browse files Browse the repository at this point in the history
…roid
  • Loading branch information
zetavg committed Dec 6, 2023
1 parent 0423e68 commit 5939789
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function ExportItemsToCsvScreen({
await RNFS.writeFile(csvFilePath, csv, 'utf8');

Share.open({
url: csvFilePath,
url: `file://${csvFilePath}`,
failOnCancel: false,
});
} catch (e: any) {
Expand Down

0 comments on commit 5939789

Please sign in to comment.