diff --git a/apps/pwabuilder/src/script/pages/app-report.ts b/apps/pwabuilder/src/script/pages/app-report.ts index c7593e12c..583816517 100644 --- a/apps/pwabuilder/src/script/pages/app-report.ts +++ b/apps/pwabuilder/src/script/pages/app-report.ts @@ -143,7 +143,7 @@ export class AppReport extends LitElement { }, {"messages": { "green": "PWABuilder has analyzed your Service Worker and your Service Worker is ready for packaging! Great job you have a perfect score!", - "yellow": "PWABuilder has analyzed your Service Worker, and has identified additonal features you can add, like offline support, to make your app feel more robust.", + "yellow": "PWABuilder has analyzed your Service Worker, and has identified additional features you can add, like offline support, to make your app feel more robust.", "blocked": "", "none": "PWABuilder has analyzed your site and did not find a Service Worker. Having a Service Worker is highly recomeneded by PWABuilder as it enables an array of features that can enhance your PWA. You can generate a Service Worker below or use our documentation to make your own.", }, diff --git a/libraries/manifest-validation/src/mani-tests.ts b/libraries/manifest-validation/src/mani-tests.ts index 9c163dadc..0f39344d2 100644 --- a/libraries/manifest-validation/src/mani-tests.ts +++ b/libraries/manifest-validation/src/mani-tests.ts @@ -488,8 +488,9 @@ export const maniTests: Array = [ return false; } + // Commenting this block out, this shouldn't be an error but instead a warning. /* we use every here bc every shortcut needs at - least one icon with size 96x96 no icons at all */ + least one icon with size 96x96 no icons at all const has96x96Icon = value.every((shortcut: {icons?: Icon[]}) => { if (!shortcut.icons) return true; // we use some here bc only one icon has to be that size @@ -500,7 +501,7 @@ export const maniTests: Array = [ if (!has96x96Icon) { this.errorString = "One or more of your shortcuts has icons but does not have one with size 96x96"; return false; - } + } */ return true; }