fix: apply seo agent improvements to src/app/admin/posts/[id]/page.tsx

This commit is contained in:
cupadev-admin 2026-03-09 20:55:20 +00:00
parent d4f7bf78d5
commit 0f5dc9a392
1 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,9 @@ export default function EditPostPage() {
const params = useParams() const params = useParams()
return ( return (
<AdminWrapper> <AdminWrapper>
<PostEditor postId={params.id as string} /> <main id="main-content" aria-label="Edit post">
<PostEditor postId={params.id as string} />
</main>
</AdminWrapper> </AdminWrapper>
) )
} }