diff --git a/apps/web/components/entity/empty-state.tsx b/apps/web/components/entity/empty-state.tsx
index 0274524..aec78af 100644
--- a/apps/web/components/entity/empty-state.tsx
+++ b/apps/web/components/entity/empty-state.tsx
@@ -123,11 +123,11 @@ export const NewPageOnboarding = ({
return (
-
+
Welcome to your new page
- Get started by setting up your page or write your first post.
+ Get started by setting up your page.
{
publish_at,
notes,
allow_reactions,
+ publication_date,
} = req.body;
try {
@@ -42,7 +43,8 @@ const createNewPost = async (req: NextApiRequest, res: NextApiResponse) => {
images_folder,
publish_at,
publication_date:
- status === PostStatus.published ? new Date().toISOString() : null,
+ publication_date ??
+ (status === PostStatus.published ? new Date().toISOString() : null),
notes: notes ?? "",
allow_reactions: allow_reactions ?? false,
});