@tap-payments/auth-jsconnect 2.4.47-test → 2.4.50-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.
- package/build/api/index.d.ts +3 -2
- package/build/api/lead.d.ts +4 -0
- package/build/api/lead.js +9 -1
- package/build/app/settings.d.ts +2 -1
- package/build/app/settings.js +6 -1
- package/build/constants/api.d.ts +1 -0
- package/build/constants/api.js +2 -1
- package/build/features/app/connectExpress/connectExpressStore.d.ts +16 -0
- package/build/features/app/connectExpress/connectExpressStore.js +45 -1
- package/build/features/connectExpress/ConnectExpress.js +17 -7
- package/package.json +1 -1
package/build/api/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import axiosInstance, { setAxiosGlobalHeaders, removeAxiosGlobalHeaders, getAxiosHeaders } from './axios';
|
|
2
2
|
import { ValidateOperatorBody } from './operator';
|
|
3
3
|
import { CreateAuthBody, VerifyAuthBody, CreatePasswordBody, VerifyOperationAuthBody, ResetPasswordVerifyAuthBody, VerifyAuthExpressOTPBody } from './auth';
|
|
4
|
-
import { UpdateLeadBody, LeadVerifyBody, CreateLeadBody, LeadOTPVerifyBody, LeadIdentityUpdateBody } from './lead';
|
|
4
|
+
import { UpdateLeadBody, LeadVerifyBody, CreateLeadBody, LeadOTPVerifyBody, LeadIdentityUpdateBody, ExpressLeadVerifyBody } from './lead';
|
|
5
5
|
import { CheckEmailBody, CheckBrandBody } from './availabilityServices';
|
|
6
6
|
import { EntityInfoBody, EntityBankUpdateBody, BankDocumentInfo, UpdateEntityBody, UpdateEntityActivityBody, UpdateEntityCapitalBody, UpdateEntityAOAFileBody, RemoveEntityActivity } from './entity';
|
|
7
7
|
import { CreateAccountBody, ExpressCreateAccountBody } from './account';
|
|
@@ -49,6 +49,7 @@ declare const API: {
|
|
|
49
49
|
retrieveEntityList: (leadId: string) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
50
50
|
retrieveLeadIdentity: (leadId: string) => Promise<any>;
|
|
51
51
|
updateLeadExpress: ({ id, ...data }: UpdateLeadBody) => Promise<any>;
|
|
52
|
+
verifyExpressLeadToken: (data: ExpressLeadVerifyBody) => Promise<any>;
|
|
52
53
|
};
|
|
53
54
|
entityService: {
|
|
54
55
|
createEntityInfo: ({ id, ...data }: EntityInfoBody, config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
@@ -152,6 +153,6 @@ declare const API: {
|
|
|
152
153
|
getInitialData: (body: InitBody) => Promise<any>;
|
|
153
154
|
};
|
|
154
155
|
};
|
|
155
|
-
export type { ValidateOperatorBody, CreateAuthBody, ExpressCreateAccountBody, VerifyAuthBody, CreateLeadBody, UpdateLeadBody, LeadVerifyBody, LeadOTPVerifyBody, CheckEmailBody, CheckBrandBody, LeadIdentityUpdateBody, EntityInfoBody, CreateAccountBody, EntityBankUpdateBody, CreatePasswordBody, BrandListBody, VerifyOperationAuthBody, ResetPasswordVerifyAuthBody, UpdateBoardBody, UpdateBrandBody, DataElementBody, UploadFileBody, UpdateEntityBody, DocumentUpdateBody, DocumentInfo, VerifyAuthExpressOTPBody, UpdateIndividualBody, UpdateEntityActivityBody, UpdateEntityCapitalBody, BankDocumentInfo, GetUserListBody, GetIndividualListBody, RequestEmailBody, DocumentBody, UpdateEntityAOAFileBody, InitBody, RemoveBrandActivity, RemoveEntityActivity, UpdateIndividualWithTypeBody, UpdateMultipleIndividualBody };
|
|
156
|
+
export type { ValidateOperatorBody, CreateAuthBody, ExpressCreateAccountBody, VerifyAuthBody, CreateLeadBody, UpdateLeadBody, LeadVerifyBody, LeadOTPVerifyBody, CheckEmailBody, CheckBrandBody, LeadIdentityUpdateBody, EntityInfoBody, CreateAccountBody, EntityBankUpdateBody, CreatePasswordBody, BrandListBody, VerifyOperationAuthBody, ResetPasswordVerifyAuthBody, UpdateBoardBody, UpdateBrandBody, DataElementBody, UploadFileBody, UpdateEntityBody, DocumentUpdateBody, DocumentInfo, VerifyAuthExpressOTPBody, UpdateIndividualBody, UpdateEntityActivityBody, UpdateEntityCapitalBody, BankDocumentInfo, GetUserListBody, GetIndividualListBody, RequestEmailBody, DocumentBody, UpdateEntityAOAFileBody, InitBody, RemoveBrandActivity, RemoveEntityActivity, UpdateIndividualWithTypeBody, UpdateMultipleIndividualBody, ExpressLeadVerifyBody };
|
|
156
157
|
export { setAxiosGlobalHeaders, removeAxiosGlobalHeaders, axiosInstance, getAxiosHeaders };
|
|
157
158
|
export default API;
|
package/build/api/lead.d.ts
CHANGED
|
@@ -71,6 +71,9 @@ export type LeadVerifyBody = {
|
|
|
71
71
|
verify_token: string;
|
|
72
72
|
service_name: string;
|
|
73
73
|
};
|
|
74
|
+
export type ExpressLeadVerifyBody = {
|
|
75
|
+
token: string;
|
|
76
|
+
};
|
|
74
77
|
export interface LeadOTPVerifyBody extends LeadVerifyBody {
|
|
75
78
|
data: string;
|
|
76
79
|
step_name: string;
|
|
@@ -101,5 +104,6 @@ declare const leadService: {
|
|
|
101
104
|
retrieveEntityList: (leadId: string) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
102
105
|
retrieveLeadIdentity: (leadId: string) => Promise<any>;
|
|
103
106
|
updateLeadExpress: ({ id, ...data }: UpdateLeadBody) => Promise<any>;
|
|
107
|
+
verifyExpressLeadToken: (data: ExpressLeadVerifyBody) => Promise<any>;
|
|
104
108
|
};
|
|
105
109
|
export { leadService };
|
package/build/api/lead.js
CHANGED
|
@@ -42,6 +42,13 @@ var getLeadById = function (leadId) {
|
|
|
42
42
|
var verifyLeadToken = function (data, config) {
|
|
43
43
|
return instance.put("".concat(ENDPOINT_PATHS.TOKEN_VERIFY), data, config);
|
|
44
44
|
};
|
|
45
|
+
var verifyExpressLeadToken = function (data) {
|
|
46
|
+
return httpClient({
|
|
47
|
+
method: 'put',
|
|
48
|
+
url: "".concat(ENDPOINT_PATHS.CONNECT, "/verify"),
|
|
49
|
+
data: data
|
|
50
|
+
});
|
|
51
|
+
};
|
|
45
52
|
var verifyLeadOTP = function (data, config) {
|
|
46
53
|
return instance.put("".concat(ENDPOINT_PATHS.TOKEN_VERIFY), data, config);
|
|
47
54
|
};
|
|
@@ -63,6 +70,7 @@ var leadService = {
|
|
|
63
70
|
verifyLeadOTP: verifyLeadOTP,
|
|
64
71
|
retrieveEntityList: retrieveEntityList,
|
|
65
72
|
retrieveLeadIdentity: retrieveLeadIdentity,
|
|
66
|
-
updateLeadExpress: updateLeadExpress
|
|
73
|
+
updateLeadExpress: updateLeadExpress,
|
|
74
|
+
verifyExpressLeadToken: verifyExpressLeadToken
|
|
67
75
|
};
|
|
68
76
|
export { leadService };
|
package/build/app/settings.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export declare const settingsSlice: import("@reduxjs/toolkit").Slice<SettingsSta
|
|
|
40
40
|
handleOpen: (state: import("immer/dist/internal").WritableDraft<SettingsState>, action: ActionState<boolean>) => void;
|
|
41
41
|
handleSkin: (state: SettingsState, action: ActionState<ThemeMode>) => void;
|
|
42
42
|
handleLanguage: (state: SettingsState, action: ActionState<LanguageMode>) => void;
|
|
43
|
+
handlePublicKey: (state: SettingsState, action: ActionState<string>) => void;
|
|
43
44
|
handleNextScreenStep: (state: SettingsState, action: ActionState<string | undefined>) => void;
|
|
44
45
|
handleCurrentActiveScreen: (state: SettingsState, action: ActionState<string>) => void;
|
|
45
46
|
handlePrevScreenStep: (state: SettingsState, action: ActionState<string | undefined>) => void;
|
|
@@ -47,7 +48,7 @@ export declare const settingsSlice: import("@reduxjs/toolkit").Slice<SettingsSta
|
|
|
47
48
|
handleSetAppConfig: (state: SettingsState, action: ActionState<LibConfig>) => void;
|
|
48
49
|
handleSetCountryByIso2: (state: SettingsState, action: ActionState<string>) => void;
|
|
49
50
|
}, "settings">;
|
|
50
|
-
export declare const handleSkin: import("@reduxjs/toolkit").ActionCreatorWithPayload<ThemeMode, "settings/handleSkin">, handleLanguage: import("@reduxjs/toolkit").ActionCreatorWithPayload<LanguageMode, "settings/handleLanguage">, handleActiveFlowScreens: import("@reduxjs/toolkit").ActionCreatorWithPayload<ScreenStepNavigation[], "settings/handleActiveFlowScreens">, handleNextScreenStep: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string | undefined, "settings/handleNextScreenStep">, handlePrevScreenStep: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string | undefined, "settings/handlePrevScreenStep">, handleCurrentActiveScreen: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "settings/handleCurrentActiveScreen">, handleSetAppConfig: import("@reduxjs/toolkit").ActionCreatorWithPayload<LibConfig, "settings/handleSetAppConfig">, handleOpen: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, "settings/handleOpen">, handleSetCountryByIso2: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "settings/handleSetCountryByIso2">, handleIsTapOrigin: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, "settings/handleIsTapOrigin">, handelBoardMaturity: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, "settings/handelBoardMaturity">;
|
|
51
|
+
export declare const handleSkin: import("@reduxjs/toolkit").ActionCreatorWithPayload<ThemeMode, "settings/handleSkin">, handleLanguage: import("@reduxjs/toolkit").ActionCreatorWithPayload<LanguageMode, "settings/handleLanguage">, handleActiveFlowScreens: import("@reduxjs/toolkit").ActionCreatorWithPayload<ScreenStepNavigation[], "settings/handleActiveFlowScreens">, handleNextScreenStep: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string | undefined, "settings/handleNextScreenStep">, handlePrevScreenStep: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string | undefined, "settings/handlePrevScreenStep">, handleCurrentActiveScreen: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "settings/handleCurrentActiveScreen">, handleSetAppConfig: import("@reduxjs/toolkit").ActionCreatorWithPayload<LibConfig, "settings/handleSetAppConfig">, handleOpen: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, "settings/handleOpen">, handleSetCountryByIso2: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "settings/handleSetCountryByIso2">, handleIsTapOrigin: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, "settings/handleIsTapOrigin">, handelBoardMaturity: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, "settings/handelBoardMaturity">, handlePublicKey: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "settings/handlePublicKey">;
|
|
51
52
|
declare const _default: import("redux").Reducer<SettingsState, import("redux").AnyAction>;
|
|
52
53
|
export default _default;
|
|
53
54
|
export declare const settingsSelector: (state: RootState) => SettingsState;
|
package/build/app/settings.js
CHANGED
|
@@ -175,6 +175,11 @@ export var settingsSlice = createSlice({
|
|
|
175
175
|
i18n.changeLanguage(action.payload);
|
|
176
176
|
storeData(LOCAL_STORAGE_KEYS.languageMode, action.payload);
|
|
177
177
|
},
|
|
178
|
+
handlePublicKey: function (state, action) {
|
|
179
|
+
if (!action.payload)
|
|
180
|
+
return;
|
|
181
|
+
state.data.appConfig.publicKey = action.payload;
|
|
182
|
+
},
|
|
178
183
|
handleNextScreenStep: function (state, action) {
|
|
179
184
|
var next = state.data.activeScreen.next;
|
|
180
185
|
var appConfig = state.data.appConfig;
|
|
@@ -276,6 +281,6 @@ export var settingsSlice = createSlice({
|
|
|
276
281
|
});
|
|
277
282
|
}
|
|
278
283
|
});
|
|
279
|
-
export var handleSkin = (_a = settingsSlice.actions, _a.handleSkin), handleLanguage = _a.handleLanguage, handleActiveFlowScreens = _a.handleActiveFlowScreens, handleNextScreenStep = _a.handleNextScreenStep, handlePrevScreenStep = _a.handlePrevScreenStep, handleCurrentActiveScreen = _a.handleCurrentActiveScreen, handleSetAppConfig = _a.handleSetAppConfig, handleOpen = _a.handleOpen, handleSetCountryByIso2 = _a.handleSetCountryByIso2, handleIsTapOrigin = _a.handleIsTapOrigin, handelBoardMaturity = _a.handelBoardMaturity;
|
|
284
|
+
export var handleSkin = (_a = settingsSlice.actions, _a.handleSkin), handleLanguage = _a.handleLanguage, handleActiveFlowScreens = _a.handleActiveFlowScreens, handleNextScreenStep = _a.handleNextScreenStep, handlePrevScreenStep = _a.handlePrevScreenStep, handleCurrentActiveScreen = _a.handleCurrentActiveScreen, handleSetAppConfig = _a.handleSetAppConfig, handleOpen = _a.handleOpen, handleSetCountryByIso2 = _a.handleSetCountryByIso2, handleIsTapOrigin = _a.handleIsTapOrigin, handelBoardMaturity = _a.handelBoardMaturity, handlePublicKey = _a.handlePublicKey;
|
|
280
285
|
export default settingsSlice.reducer;
|
|
281
286
|
export var settingsSelector = function (state) { return state.settings; };
|
package/build/constants/api.d.ts
CHANGED
package/build/constants/api.js
CHANGED
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
import { RootState } from '../../../app/store';
|
|
2
2
|
import { MobileFormValues, NIDFormValues, CivilFormValues, OTPFormValues, IndividualFormValues, SharedState, FlowsTypes, ActionState, CountryCode, AuthForType, BusinessDataFormValues, AsyncThunkParams } from '../../../@types';
|
|
3
3
|
import { CancelToken } from 'axios';
|
|
4
|
+
interface VerifyLeadTokenProps {
|
|
5
|
+
token: string;
|
|
6
|
+
}
|
|
7
|
+
export declare const verifyLeadToken: import("@reduxjs/toolkit").AsyncThunk<{
|
|
8
|
+
data: any;
|
|
9
|
+
token: string;
|
|
10
|
+
}, VerifyLeadTokenProps, {
|
|
11
|
+
state?: unknown;
|
|
12
|
+
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|
|
13
|
+
extra?: unknown;
|
|
14
|
+
rejectValue?: unknown;
|
|
15
|
+
serializedErrorType?: unknown;
|
|
16
|
+
pendingMeta?: unknown;
|
|
17
|
+
fulfilledMeta?: unknown;
|
|
18
|
+
rejectedMeta?: unknown;
|
|
19
|
+
}>;
|
|
4
20
|
export declare const retrieveLeadIdentityByIdAsync: import("@reduxjs/toolkit").AsyncThunk<{
|
|
5
21
|
data: any;
|
|
6
22
|
countryCode: CountryCode;
|
|
@@ -56,12 +56,45 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
56
56
|
};
|
|
57
57
|
var _a;
|
|
58
58
|
import { createAsyncThunk, createSlice } from '@reduxjs/toolkit';
|
|
59
|
-
import { handleNextScreenStep, handleCurrentActiveScreen, handleOpen } from '../../../app/settings';
|
|
59
|
+
import { handleNextScreenStep, handleCurrentActiveScreen, handleOpen, handlePublicKey } from '../../../app/settings';
|
|
60
60
|
import { FlowsTypes, AuthForType, BusinessType, LicenseType } from '../../../@types';
|
|
61
61
|
import API from '../../../api';
|
|
62
62
|
import { CONNECT_EXPRESS_STEP_NAMES, IDENTIFICATION_TYPE, OTHER_CR_LICENSE, OTHER_FL_LICENSE } from '../../../constants';
|
|
63
63
|
import { defaultCountry } from '../../../constants';
|
|
64
64
|
import { getIndividualName, capitalizeTheFirstLetterOfEachWord, sleep, findCountryByIddPrefix, concatenateObjectValues, isSA } from '../../../utils';
|
|
65
|
+
export var verifyLeadToken = createAsyncThunk('expressVerifyLeadToken', function (_a, thunkApi) {
|
|
66
|
+
var token = _a.token;
|
|
67
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
68
|
+
var payload, data, _b, lead_id, post, public_key;
|
|
69
|
+
return __generator(this, function (_c) {
|
|
70
|
+
switch (_c.label) {
|
|
71
|
+
case 0:
|
|
72
|
+
payload = {
|
|
73
|
+
token: token
|
|
74
|
+
};
|
|
75
|
+
return [4, API.leadService.verifyExpressLeadToken(payload)];
|
|
76
|
+
case 1:
|
|
77
|
+
data = _c.sent();
|
|
78
|
+
_b = data || {}, lead_id = _b.lead_id, post = _b.post, public_key = _b.public_key;
|
|
79
|
+
if (public_key)
|
|
80
|
+
thunkApi.dispatch(handlePublicKey(public_key));
|
|
81
|
+
if (post === null || post === void 0 ? void 0 : post.url)
|
|
82
|
+
thunkApi.dispatch(setPostUrl(post.url));
|
|
83
|
+
if (!lead_id) return [3, 3];
|
|
84
|
+
thunkApi.dispatch(setIsLeadIdPassed(true));
|
|
85
|
+
thunkApi.dispatch(setLeadId(lead_id));
|
|
86
|
+
return [4, thunkApi.dispatch(retrieveLeadIdentityByIdAsync(lead_id))];
|
|
87
|
+
case 2:
|
|
88
|
+
_c.sent();
|
|
89
|
+
_c.label = 3;
|
|
90
|
+
case 3: return [2, {
|
|
91
|
+
data: data,
|
|
92
|
+
token: token
|
|
93
|
+
}];
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
});
|
|
97
|
+
});
|
|
65
98
|
export var retrieveLeadIdentityByIdAsync = createAsyncThunk('expressConnect/retrieveLeadIdentityByIdAsync', function (leadId, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
66
99
|
var _a, settings, connectExpress, countryCode, showBoard, data, phone, status, board_id, board_info_id, isRegistered, _b, boardInfo, boardData, error_1;
|
|
67
100
|
var _c, _d;
|
|
@@ -806,6 +839,17 @@ export var connectSlice = createSlice({
|
|
|
806
839
|
},
|
|
807
840
|
extraReducers: function (builder) {
|
|
808
841
|
builder
|
|
842
|
+
.addCase(verifyLeadToken.pending, function (state) {
|
|
843
|
+
state.customLoading = true;
|
|
844
|
+
state.error = null;
|
|
845
|
+
})
|
|
846
|
+
.addCase(verifyLeadToken.fulfilled, function (state, action) {
|
|
847
|
+
state.customLoading = false;
|
|
848
|
+
})
|
|
849
|
+
.addCase(verifyLeadToken.rejected, function (state, action) {
|
|
850
|
+
state.customLoading = false;
|
|
851
|
+
state.error = action.error.message;
|
|
852
|
+
})
|
|
809
853
|
.addCase(retrieveLeadIdentityByIdAsync.pending, function (state) {
|
|
810
854
|
state.error = null;
|
|
811
855
|
state.customLoading = true;
|
|
@@ -25,13 +25,13 @@ import React, { memo } from 'react';
|
|
|
25
25
|
import { createRoot } from 'react-dom/client';
|
|
26
26
|
import { FeatureContainer } from '../shared/Containers';
|
|
27
27
|
import { useAppTheme, useAppSelector, useAppConfig, useErrorListener, useStepStartedListener, useAppDispatch } from '../../hooks';
|
|
28
|
-
import { handleCurrentActiveScreen, settingsSelector } from '../../app/settings';
|
|
28
|
+
import { handleCurrentActiveScreen, handleLanguage, settingsSelector } from '../../app/settings';
|
|
29
29
|
import AnimationFlow from '../../components/AnimationFlow';
|
|
30
30
|
import { store } from '../../app/store';
|
|
31
|
-
import { connectExpressSelector, setIsLeadIdPassed, setPostUrl, setLeadId, retrieveLeadIdentityByIdAsync, setShowBoard } from '../app/connectExpress/connectExpressStore';
|
|
31
|
+
import { connectExpressSelector, setIsLeadIdPassed, setPostUrl, setLeadId, retrieveLeadIdentityByIdAsync, setShowBoard, verifyLeadToken } from '../app/connectExpress/connectExpressStore';
|
|
32
32
|
import { ReduxProvider, ThemeProvider } from '../../components/Providers';
|
|
33
33
|
import Collapse from '../../components/Collapse';
|
|
34
|
-
import { isKW, findOrCreateElementAndInject } from '../../utils';
|
|
34
|
+
import { isKW, findOrCreateElementAndInject, getParameterByName } from '../../utils';
|
|
35
35
|
import { CONNECT_EXPRESS_SCREENS_NAVIGATION } from '../../constants';
|
|
36
36
|
import { connectExpressFeatureScreens } from '../featuresScreens';
|
|
37
37
|
import Background from '../shared/Background';
|
|
@@ -53,10 +53,20 @@ var ConnectExpress = memo(function (_a) {
|
|
|
53
53
|
dispatch(setShowBoard(showBoard));
|
|
54
54
|
}, []);
|
|
55
55
|
React.useEffect(function () {
|
|
56
|
-
if (data.isValidOperator && props.open && !settingLoading
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
56
|
+
if (data.isValidOperator && props.open && !settingLoading) {
|
|
57
|
+
var token = getParameterByName('token');
|
|
58
|
+
if (token) {
|
|
59
|
+
var lang = getParameterByName('lang');
|
|
60
|
+
if (lang)
|
|
61
|
+
dispatch(handleLanguage(lang));
|
|
62
|
+
dispatch(verifyLeadToken({ token: token }));
|
|
63
|
+
return;
|
|
64
|
+
}
|
|
65
|
+
if (leadId) {
|
|
66
|
+
dispatch(setIsLeadIdPassed(true));
|
|
67
|
+
dispatch(setLeadId(leadId));
|
|
68
|
+
dispatch(retrieveLeadIdentityByIdAsync(leadId));
|
|
69
|
+
}
|
|
60
70
|
}
|
|
61
71
|
}, [data.isValidOperator, settingLoading]);
|
|
62
72
|
React.useEffect(function () {
|