diff --git a/src/components/BookmarkBtn.tsx b/src/components/BookmarkBtn.tsx
index 18ced922ba..3a4a890813 100644
--- a/src/components/BookmarkBtn.tsx
+++ b/src/components/BookmarkBtn.tsx
@@ -58,11 +58,13 @@ export default function BookmarkBtn({
aria-label="Add to favorites button"
onClick={toogleBookmark}
disabled={isBookmarksLoading || isTogglingBookmark}
- className={`flex items-center gap-1 disabled:text-gray-l4 ${
- isBookmarked ? "text-red fill-red" : ""
- } ${classes}`}
+ className={`flex items-center gap-1 disabled:text-gray-l4 ${classes}`}
>
-
+
{children}
>
diff --git a/src/components/VerifiedIcon.tsx b/src/components/VerifiedIcon.tsx
index 847685e604..78377c5f5e 100644
--- a/src/components/VerifiedIcon.tsx
+++ b/src/components/VerifiedIcon.tsx
@@ -12,7 +12,11 @@ export default function VerifiedIcon({ classes = "", size }: Props) {
<>
-
+
>
);
diff --git a/src/pages/Marketplace/Cards/Card.tsx b/src/pages/Marketplace/Cards/Card.tsx
index 48a5fcda70..0e7e849541 100644
--- a/src/pages/Marketplace/Cards/Card.tsx
+++ b/src/pages/Marketplace/Cards/Card.tsx
@@ -35,7 +35,7 @@ export default function Card({
{claimed && (
)}
{name}
diff --git a/src/pages/Profile/Body/Body.tsx b/src/pages/Profile/Body/Body.tsx
index 260f7d9f84..fed4804efe 100644
--- a/src/pages/Profile/Body/Body.tsx
+++ b/src/pages/Profile/Body/Body.tsx
@@ -36,7 +36,7 @@ function Body() {
{(p.claimed ?? true) && (
)}
{p.name}
diff --git a/src/pages/Profile/Body/GeneralInfo/DetailsColumn/EndowDesignationTag.tsx b/src/pages/Profile/Body/GeneralInfo/DetailsColumn/EndowDesignationTag.tsx
index 82453aacf5..be49dc9dfa 100644
--- a/src/pages/Profile/Body/GeneralInfo/DetailsColumn/EndowDesignationTag.tsx
+++ b/src/pages/Profile/Body/GeneralInfo/DetailsColumn/EndowDesignationTag.tsx
@@ -18,7 +18,7 @@ export default function EndowDesignationTag({
return (
- {endow_designation}
+ {endow_designation}
);