import { InboxPage } from "@/components/pre-lancamentos/inbox-page"; import { getUserId } from "@/lib/auth/server"; import { fetchInboxDialogData, fetchInboxItems } from "./data"; export default async function Page() { const userId = await getUserId(); const [items, dialogData] = await Promise.all([ fetchInboxItems(userId, "pending"), fetchInboxDialogData(userId), ]); return (
); }