Skip to content

Commit

Permalink
fix lint issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
ianlin-bbpos committed Nov 17, 2023
1 parent 5e725c1 commit c7ee38d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev-app/src/screens/CollectCardPaymentScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -431,8 +431,8 @@ export default function CollectCardPaymentScreen() {
name: 'Processed',
description: 'terminal.confirmPaymentIntent',
metadata: {
paymententIntentId: "",
chargeId: "",
paymententIntentId: '',
chargeId: '',
},
},
],
Expand All @@ -443,7 +443,7 @@ export default function CollectCardPaymentScreen() {
if (paymentIntent?.charges[0]?.id) {
setLastSuccessfulChargeId(paymentIntent.charges[0].id);
}

if (paymentIntent?.status === 'succeeded') {
return;
}
Expand Down

0 comments on commit c7ee38d

Please sign in to comment.