From 50d6d6d44e0408c73a3c26a50e6ed06cef0be59d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Abraham=20P=C3=A9rez=20Marrero?= <59702400+abrahampm@users.noreply.github.com> Date: Mon, 23 Oct 2023 05:29:39 -0400 Subject: [PATCH] PWA: Fix app manifest logo icon sizes (#3838) Logo icon 77.png does not exists so a warning is shown on Chrome Dev Tools when inspecting the PWA manifest --- internal/pwa/icon.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pwa/icon.go b/internal/pwa/icon.go index bd6701e06..bef67c218 100644 --- a/internal/pwa/icon.go +++ b/internal/pwa/icon.go @@ -16,7 +16,7 @@ type Icon struct { } // IconSizes represents standard app icon sizes. -var IconSizes = []int{16, 32, 77, 114, 128, 144, 152, 160, 167, 180, 192, 196, 256, 400, 512} +var IconSizes = []int{16, 32, 76, 114, 128, 144, 152, 160, 167, 180, 192, 196, 256, 400, 512} // NewIcons creates new app icons in the default sizes based on the parameters provided. func NewIcons(staticUri, appIcon string) Icons {