-
-
- {size !== "sm" && (
-
setIsLikeListOpen(true)}
- >
- {likes
- ?.sort((a, b) =>
- b.character?.metadata?.content?.avatars?.[0] ? 1 : -1,
- )
- .slice(0, 3)
- ?.map((like, index) => (
- -
-
-
- ))}
- {likeCount > 3 && (
- -
-
- +{likeCount - 3}
-
-
- )}
-
- )}
-
-
-
- {size !== "sm" && (
-
- )}
-
- {size !== "sm" && (
-
-
- {
-
- }
-
- )}
-
-
-
- Your like has been stored on the blockchain, view it on{" "}
-
- Crossbell Scan
-
-
-
-
-
-
-
-
-
-
-
- Do you really want to revert this like action?
-
-
-
-
-
-
-
-
-
-
- This post has been minted to NFT by you, view it on{" "}
-
- xChar
- {" "}
- or{" "}
-
- Crossbell Scan
-
-
-
-
-
-
-
-
-
-
-
- >
- )
-}
diff --git a/src/components/dashboard/DashboardLayout.server.tsx b/src/components/dashboard/DashboardLayout.server.tsx
index 3632e720..91387c77 100644
--- a/src/components/dashboard/DashboardLayout.server.tsx
+++ b/src/components/dashboard/DashboardLayout.server.tsx
@@ -9,6 +9,7 @@ export const getServerSideProps = async (ctx: any) => {
"common",
"dashboard",
"index",
+ "site",
])),
},
}
diff --git a/src/components/site/PostFooter.tsx b/src/components/site/PostFooter.tsx
index 3bce9653..36831aa6 100644
--- a/src/components/site/PostFooter.tsx
+++ b/src/components/site/PostFooter.tsx
@@ -1,5 +1,7 @@
import { Comment } from "~/components/common/Comment"
-import { Reactions } from "~/components/common/Reactions"
+import { ReactionLike } from "~/components/common/ReactionLike"
+import { ReactionMint } from "~/components/common/ReactionMint"
+import { ReactionTip } from "~/components/common/ReactionTip"
import { Note, Profile } from "~/lib/types"
export const PostFooter: React.FC<{
@@ -8,12 +10,14 @@ export const PostFooter: React.FC<{
}> = ({ page, site }) => {
return (
<>
-