@swp/pay-sdk
Advanced tools
Comparing version 0.2.1 to 0.2.2
@@ -772,4 +772,6 @@ 'use strict'; | ||
} | ||
var lastDeposits = caml_array_get(lastPayments$1, i).deposits; | ||
var deposits = p.deposits; | ||
var match = caml_array_get(lastPayments$1, i).deposits; | ||
var lastDeposits = match !== undefined ? match : /* array */[]; | ||
var match$1 = p.deposits; | ||
var deposits = match$1 !== undefined ? match$1 : /* array */[]; | ||
if (deposits.length !== lastDeposits.length) { | ||
@@ -776,0 +778,0 @@ emitter.emit("new-deposit", checkout); |
{ | ||
"name": "@swp/pay-sdk", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"main": "dist/main", | ||
@@ -5,0 +5,0 @@ "private": false, |
Sorry, the diff of this file is not supported yet
57554
1391