@tap-payments/auth-jsconnect 2.3.50-test → 2.3.51-test
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -770,7 +770,7 @@ export var businessSlice = createSlice({
|
|
|
770
770
|
if (license) {
|
|
771
771
|
var number_1 = license.number;
|
|
772
772
|
var _e = state.data.businessTypeData || {}, busResData = _e.responseBody, selectedLicense = _e.selectedLicense;
|
|
773
|
-
var licenseList = (busResData ||
|
|
773
|
+
var licenseList = (busResData === null || busResData === void 0 ? void 0 : busResData.licenseList) || [];
|
|
774
774
|
var selectedLicenseData = selectedLicense;
|
|
775
775
|
if (number_1) {
|
|
776
776
|
var findLicense = licenseList.find(function (_a) {
|
|
@@ -846,7 +846,7 @@ export var businessSlice = createSlice({
|
|
|
846
846
|
if (license) {
|
|
847
847
|
var number_2 = license.number;
|
|
848
848
|
var _e = state.data.businessTypeData || {}, busResData = _e.responseBody, selectedLicense = _e.selectedLicense;
|
|
849
|
-
var licenseList = (busResData ||
|
|
849
|
+
var licenseList = (busResData === null || busResData === void 0 ? void 0 : busResData.licenseList) || [];
|
|
850
850
|
var selectedLicenseData = selectedLicense;
|
|
851
851
|
if (number_2) {
|
|
852
852
|
var findLicense = licenseList.find(function (_a) {
|