diff --git a/src/components/bookmarks/item.jsx b/src/components/bookmarks/item.jsx
index 17fcbe9e..89dd698d 100644
--- a/src/components/bookmarks/item.jsx
+++ b/src/components/bookmarks/item.jsx
@@ -19,7 +19,7 @@ export default function Item({ bookmark }) {
{bookmark.icon &&
-
+
}
{!bookmark.icon && bookmark.abbr}
diff --git a/src/components/resolvedicon.jsx b/src/components/resolvedicon.jsx
index 3dad2b0e..8657a754 100644
--- a/src/components/resolvedicon.jsx
+++ b/src/components/resolvedicon.jsx
@@ -1,9 +1,9 @@
import Image from "next/future/image";
-export default function ResolvedIcon({ icon, width = 32, height = 32 }) {
+export default function ResolvedIcon({ icon, width = 32, height = 32, alt = "logo" }) {
// direct or relative URLs
if (icon.startsWith("http") || icon.startsWith("/")) {
- return
;
+ return
;
}
// mdi- prefixed, material design icons
@@ -31,7 +31,7 @@ export default function ResolvedIcon({ icon, width = 32, height = 32 }) {
src={`https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/${iconName}.png`}
width={width}
height={height}
- alt="logo"
+ alt={alt}
/>
);
-}
\ No newline at end of file
+}