TP-89230 | hangup user fix

This commit is contained in:
Mayank Singh
2024-11-18 13:32:21 +05:30
parent 6df1284a7c
commit 099b209dfb
2 changed files with 1 additions and 1 deletions

View File

@@ -119,7 +119,6 @@ class AmeyoAdapter implements IAdapter {
setAutoStatus(this.sessionId);
}
if(payload?.data?.requestKey === RequestKeys.GET_CAMPAIGN_ID) {
console.log("***", payload?.data?.response);
this.campaignId = payload?.data?.response?.campaignInfos?.[0]?.campaignId;
attachOmniqueService(this.sessionId, this.userName.toLowerCase(), this.campaignId);
}

View File

@@ -1,4 +1,5 @@
export type GenericObject = {
[key: string]: any;
};
export type DummyObject = {};
export default GenericObject;