Skip to content

Commit

Permalink
Fix pdf filepath param.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrizagidulin committed Jun 11, 2024
1 parent 4ebbec1 commit 498aba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/screens/PublicLinkScreen/PublicLinkScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export default function PublicLinkScreen ({ navigation, route }: PublicLinkScree

const handleShareAsPdf = async() => {
if (pdf) {
Share.open({url: `file://${pdf.filePath}`});
Share.open({url: `file://${pdf.filepath}`});
}
};

Expand Down

0 comments on commit 498aba9

Please sign in to comment.