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);