Skip to content

Commit

Permalink
Added missing quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ital0 committed Mar 19, 2018
1 parent a82e393 commit b9ffb5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ const RNSumUpWrapper = NativeModules.RNSumUp;
const RNSumUp = {
apiKey: '',

paymentOptionAny: (Platform.OS === ios) ? RNSumUpWrapper.SMPPaymentOptionAny : null,
paymentOptionCardReader: (Platform.OS === ios) ? RNSumUpWrapper.SMPPaymentOptionCardReader : null,
paymentOptionMobilePayment: (Platform.OS === ios) ? RNSumUpWrapper.SMPPaymentOptionMobilePayment : null,
paymentOptionAny: (Platform.OS === 'ios') ? RNSumUpWrapper.SMPPaymentOptionAny : null,
paymentOptionCardReader: (Platform.OS === 'ios') ? RNSumUpWrapper.SMPPaymentOptionCardReader : null,
paymentOptionMobilePayment: (Platform.OS === 'ios') ? RNSumUpWrapper.SMPPaymentOptionMobilePayment : null,

SMPCurrencyCodeBGN: RNSumUpWrapper.SMPCurrencyCodeBGN,
SMPCurrencyCodeBRL: RNSumUpWrapper.SMPCurrencyCodeBRL,
Expand Down

0 comments on commit b9ffb5e

Please sign in to comment.