From 86590e72790e7a8ec0a1a520e4ba6e4ecd236e84 Mon Sep 17 00:00:00 2001 From: WalkxCode Date: Wed, 11 May 2022 15:10:58 +0200 Subject: [PATCH] feat: Move to Dashboard Icons --- components/AppShelf/AddAppShelfItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/AppShelf/AddAppShelfItem.tsx b/components/AppShelf/AddAppShelfItem.tsx index d8e619a9d..4aa0f8a3d 100644 --- a/components/AppShelf/AddAppShelfItem.tsx +++ b/components/AppShelf/AddAppShelfItem.tsx @@ -86,7 +86,7 @@ function MatchIcon( // https://data.jsdelivr.com/v1/package/gh/IceWhaleTech/AppIcon@main // and then iterate over the files -> files -> name and then remove the extension (.png) // Compare it to the input and then fetch the icon - fetch(`https://cdn.jsdelivr.net/gh/IceWhaleTech/AppIcon@main/all/${name.toLowerCase()}.png`) + fetch(`https://cdn.jsdelivr.net/gh/walkxhub/dashboard-icons/png/${name.toLowerCase()}.png`) .then((res) => { if (res.status === 200) { form.setFieldValue('icon', res.url);