fix: add missing newlines at the end of JSON files; clean up formatting in page components
This commit is contained in:
@@ -77,10 +77,7 @@ export default async function PostsManagerPage({ params }: Props) {
|
||||
</thead>
|
||||
<tbody>
|
||||
{(posts as SitePost[]).map((post) => (
|
||||
<tr
|
||||
key={post.id}
|
||||
className="hover:bg-muted/30 border-b"
|
||||
>
|
||||
<tr key={post.id} className="hover:bg-muted/30 border-b">
|
||||
<td className="p-3 font-medium">{post.title}</td>
|
||||
<td className="p-3">
|
||||
<Badge
|
||||
|
||||
Reference in New Issue
Block a user