Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/hooks/useNfc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export const useNfc = () => {
} else {
//if the card has pin enabled
//check the amount didn't exceed the limit
const limitSat = cardDataResponse.pinLimit;
const limitSat = cardDataResponse.pinLimit / 1000;
if (limitSat <= amount) {
setIsPinRequired(true);
pin = await getPin();
Expand Down
Loading