Fix (and suppress) eslint errors
This commit is contained in:
parent
02c344c1e1
commit
9b9c38949e
3 changed files with 30 additions and 28 deletions
|
@ -82,6 +82,7 @@ const messageHandler = {
|
|||
if (!extensionInfo.permissions.includes("contextualIdentities")) {
|
||||
throw new Error("Missing contextualIdentities permission");
|
||||
}
|
||||
// eslint-disable-next-line require-atomic-updates
|
||||
externalExtensionAllowed[sender.id] = true;
|
||||
}
|
||||
let response;
|
||||
|
|
|
@ -259,6 +259,7 @@ const Logic = {
|
|||
|
||||
getPanelSelector(panel) {
|
||||
if (this._onboardingVariation === "securityOnboarding" &&
|
||||
// eslint-disable-next-line no-prototype-builtins
|
||||
panel.hasOwnProperty("securityPanelSelector")) {
|
||||
return panel.securityPanelSelector;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue