diff --git a/public/locales/zh/common.json b/public/locales/zh/common.json
index 57773408..dd1efd4b 100644
--- a/public/locales/zh/common.json
+++ b/public/locales/zh/common.json
@@ -64,5 +64,6 @@
"Coming soon": "即将推出",
"What is Mira? Where can I get some?" : "Mira 是什么?我在哪里可以获得?",
"Tip": "赞赏",
- "Tip the post: {{name}}": "赞赏文章:{{name}}"
+ "Tip the post: {{name}}": "赞赏文章:{{name}}",
+ "Custom": "自定义"
}
\ No newline at end of file
diff --git a/src/components/common/PatronModal.tsx b/src/components/common/PatronModal.tsx
index d8235d22..fa6d855d 100644
--- a/src/components/common/PatronModal.tsx
+++ b/src/components/common/PatronModal.tsx
@@ -146,7 +146,7 @@ export const PatronModal: React.FC<{
{tips.data?.pages?.[0]?.list?.length ? (
<>
-
+
{tips.data.pages[0].list?.map((tip, index) => (
-
-
+
{tip.amount} Mira
diff --git a/src/components/ui/BoxRadio.tsx b/src/components/ui/BoxRadio.tsx
index 5151532b..c808ce2c 100644
--- a/src/components/ui/BoxRadio.tsx
+++ b/src/components/ui/BoxRadio.tsx
@@ -23,7 +23,7 @@ export const BoxRadio: React.FC<{
setValue: Dispatch>
items: RadioItem[]
}> = ({ value, setValue, items }) => {
- const { t } = useTranslation(["dashboard"])
+ const { t } = useTranslation(["common"])
const randomId = useMemo(() => nanoid(), [])
const [isCustom, setIsCustom] = useState(false)
diff --git a/src/models/site.model.ts b/src/models/site.model.ts
index e610ae68..89fedb12 100644
--- a/src/models/site.model.ts
+++ b/src/models/site.model.ts
@@ -557,7 +557,7 @@ export async function getTips(
toCharacterId: input.toCharacterId,
tokenAddress: address?.data || "0xAfB95CC0BD320648B3E8Df6223d9CDD05EbeDC64",
includeMetadata: true,
- limit: 8,
+ limit: 7,
cursor: input.cursor,
})