fix: rewrite ai-flavored marketing copy with natural language

This commit is contained in:
zetaloop
2026-02-20 20:13:54 +08:00
parent 4079d97f0f
commit e12500fafd
7 changed files with 9 additions and 18 deletions
+1 -6
View File
@@ -105,12 +105,7 @@ export default function NewPostPage() {
<div className="space-y-2">
<Label htmlFor="content"></Label>
<Textarea
id="content"
placeholder="分享你的游戏体验..."
rows={6}
{...register("content")}
/>
<Textarea id="content" placeholder="写点什么..." rows={6} {...register("content")} />
{errors.content && (
<p className="text-xs text-destructive">{errors.content.message}</p>
)}