From 95f4ec94cf0ea9eea3ede869606df211c490a9b8 Mon Sep 17 00:00:00 2001 From: Andreas Date: Tue, 2 Jul 2024 21:18:49 +0200 Subject: [PATCH] Renamed ClientPostView to CPostView in accordance with file name --- src/views/admin/post/CPostView.tsx | 2 +- src/views/admin/post/PostView.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/admin/post/CPostView.tsx b/src/views/admin/post/CPostView.tsx index 87b67c7..b7dc421 100644 --- a/src/views/admin/post/CPostView.tsx +++ b/src/views/admin/post/CPostView.tsx @@ -21,7 +21,7 @@ export type PostViewProps = { actions: PostServerActions; }; -export function ClientPostView({ +export function CPostView({ // children, headings, posts, diff --git a/src/views/admin/post/PostView.tsx b/src/views/admin/post/PostView.tsx index c9bf538..457f4fa 100644 --- a/src/views/admin/post/PostView.tsx +++ b/src/views/admin/post/PostView.tsx @@ -12,7 +12,7 @@ import { import { getProjects } from "@/app/lib/actions/entityManagement/post/projectActions"; import { Bucket, Project, Post, dbSync, Attachment } from "@/models"; import { handleActionResult } from "@/app/lib/actions/clientActionHandler"; -import { ClientPostView } from "@/views/admin/post"; +import { CPostView } from "@/views/admin/post"; type Props = { children?: ReactNode; @@ -48,7 +48,7 @@ export async function PostView(props: Props) { return (
-