--- import type { JoinNotice } from "../../features/community-membership/notice"; interface Props { notice?: JoinNotice | null; communityName?: string | null; } const { notice, communityName } = Astro.props; if (!notice) { return; } ---

{communityName ? `${communityName}: ` : ""} {notice.message}