[fix] lint errors + new version tag

This commit is contained in:
Purp1e
2025-03-27 21:17:19 +08:00
parent 5b7f763221
commit a66100bfaf
2 changed files with 3 additions and 3 deletions

View File

@@ -42,7 +42,7 @@
},
"productName": "CS工具箱",
"mainBinaryName": "cstb",
"version": "0.0.5",
"version": "0.0.6-beta.1",
"identifier": "upup.cool",
"plugins": {
"deep-link": {

View File

@@ -64,13 +64,13 @@ const ReleaseNotes = () => {
</Chip> */}
<Chip size="sm" className="bg-zinc-200 dark:bg-white/10">
{release?.created_at ? new Date(release.created_at).toLocaleString() : "未知时间"}
{release.created_at ? new Date(release.created_at as string).toLocaleString() : "未知时间"}
</Chip>
</span>
</CardHeader>
<CardBody className="gap-3">
<div className="">
<MarkdownRender>{release?.content || "无内容"}</MarkdownRender>
<MarkdownRender>{release.content || "无内容"}</MarkdownRender>
</div>
</CardBody>
</Card>