From c3b87bf20fa7d043e41456edb3facc9b1e6c9b5f Mon Sep 17 00:00:00 2001 From: "damian.ionic" Date: Mon, 8 Apr 2024 09:59:53 -0700 Subject: [PATCH] chore: linting --- src/platforms/pwa/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platforms/pwa/index.ts b/src/platforms/pwa/index.ts index d00a502..de67777 100644 --- a/src/platforms/pwa/index.ts +++ b/src/platforms/pwa/index.ts @@ -366,7 +366,7 @@ export class PwaAssetGenerator extends AssetGenerator { for (const icon of icons) { if (await pathExists(join(pwaDir, icon.src))) { const exists = !!pwaAssets.find(({ template: { width, height } }) => { - return `${width}x${height}` === icon.sizes + return `${width}x${height}` === icon.sizes; }); if (!exists) { rmSync(join(pwaDir, icon.src));