import { notFound } from "next/navigation"; import Bookmarks from "@/components/dashboard/bookmarks/Bookmarks"; import { api } from "@/server/api/client"; import { TRPCError } from "@trpc/server"; export default async function FeedPage({ params, }: { params: { feedId: string }; }) { let feed; try { feed = await api.feeds.get({ feedId: params.feedId }); } catch (e) { if (e instanceof TRPCError) { if (e.code == "NOT_FOUND") { notFound(); } } throw e; } return ( {feed.name}} /> ); }