Skip to content

Commit

Permalink
fix: fix NfcV custom transceive sharing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
whitedogg13 committed Sep 22, 2022
1 parent f542500 commit 67b3341
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Screens/Home/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ function HomeScreen(props) {
navigation.navigate('CustomTransceive', {
savedRecord: sharedRecord,
});
} else if (sharedRecord.payload?.tech === NfcTech.NfcV) {
navigation.navigate('CustomTransceive', {
savedRecord: sharedRecord,
});
} else if (sharedRecord.payload?.tech === NfcTech.IsoDep) {
navigation.navigate('CustomTransceive', {
savedRecord: sharedRecord,
Expand Down

0 comments on commit 67b3341

Please sign in to comment.