Skip to content

Commit

Permalink
PR comments addressed
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitniyerclevertap committed Feb 26, 2025
1 parent 4e74bd5 commit 04890c3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion clevertap.js
Original file line number Diff line number Diff line change
Expand Up @@ -12089,7 +12089,7 @@
break;

default:
logger.debug('unknown unknown query param');
logger.debug("unknown unknown query param ".concat(ctType));
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion clevertap.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion clevertap.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/clevertap.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default class CleverTap {
constructor (clevertap = {}) {
this.#onloadcalled = 0
this._isPersonalisationActive = this._isPersonalisationActive.bind(this)
this.raiseNotificationClicked = () => {}
this.raiseNotificationClicked = () => { }
this.#logger = new Logger(logLevels.INFO)
this.#account = new Account(clevertap.account?.[0], clevertap.region || clevertap.account?.[1], clevertap.targetDomain || clevertap.account?.[2], clevertap.token || clevertap.account?.[3])
encryption.key = clevertap.account?.[0].id
Expand Down
2 changes: 1 addition & 1 deletion src/util/campaignRender/nativeDisplay.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export const checkCustomHtmlNativeDisplayPreview = (logger) => {
}
break
default:
logger.debug('unknown unknown query param')
logger.debug(`unknown unknown query param ${ctType}`)
break
}
}
Expand Down

0 comments on commit 04890c3

Please sign in to comment.