Skip to content

Commit

Permalink
feat(27255): fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
DDDDDanica committed Jan 31, 2025
1 parent f3c8e38 commit 2c5ab32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions development/webpack/utils/plugins/ManifestPlugin/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function transformManifest(
* @param browserManifest - The Chrome extension manifest object to modify
*/
function addManifestFlags(browserManifest: chrome.runtime.Manifest) {
let manifestFlags = undefined;
let manifestFlags;

if (manifestOverridesPath) {
try {
Expand All @@ -67,7 +67,7 @@ export function transformManifest(
}
}

if(manifestFlags) {
if (manifestFlags) {
browserManifest._flags = manifestFlags;
}
}
Expand Down

0 comments on commit 2c5ab32

Please sign in to comment.