diff --git a/src/Schema/PaymentMethod/PayPalAccount.js b/src/Schema/PaymentMethod/PayPalAccount.js index ba04dad..0bc0337 100644 --- a/src/Schema/PaymentMethod/PayPalAccount.js +++ b/src/Schema/PaymentMethod/PayPalAccount.js @@ -7,7 +7,7 @@ const PayPalAccount = new Schema( email: String, name: String, payerId: String, - countryCode: String + countryCode: String, }, { _id: false } ); diff --git a/src/Schema/Transaction/PayPalAccount.js b/src/Schema/Transaction/PayPalAccount.js index ba65c24..9f387cf 100644 --- a/src/Schema/Transaction/PayPalAccount.js +++ b/src/Schema/Transaction/PayPalAccount.js @@ -5,7 +5,7 @@ const PayPalAccount = new mongoose.Schema( email: String, name: String, payerId: String, - countryCode: String + countryCode: String, }, { _id: false } );