Skip to content

Commit

Permalink
Fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamWr committed Nov 9, 2022
1 parent 6996210 commit b642bbd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/redirects/google-ima3.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,12 @@ export function GoogleIma3(source) {
AdsLoader.prototype.requestAds = function (adsRequest, userRequestContext) {
requestAnimationFrame(() => {
const { ADS_MANAGER_LOADED } = AdsManagerLoadedEvent.Type;
// eslint-disable-next-line max-len
this._dispatch(new ima.AdsManagerLoadedEvent(ADS_MANAGER_LOADED, adsRequest, userRequestContext));
const event = new ima.AdsManagerLoadedEvent(
ADS_MANAGER_LOADED,
adsRequest,
userRequestContext,
);
this._dispatch(event);
});

const e = new ima.AdError(
Expand Down

0 comments on commit b642bbd

Please sign in to comment.