fix: apply seo agent improvements to src/app/admin/posts/[id]/page.tsx
This commit is contained in:
parent
d4f7bf78d5
commit
0f5dc9a392
|
|
@ -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>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue