diff --git a/apps/web/src/components/payments/UpgradeModal.tsx b/apps/web/src/components/payments/UpgradeModal.tsx index 6d8e80f..27614a3 100644 --- a/apps/web/src/components/payments/UpgradeModal.tsx +++ b/apps/web/src/components/payments/UpgradeModal.tsx @@ -36,6 +36,8 @@ export const UpgradeModal = () => { "You've reached the contact book limit for your current plan.", [LimitReason.TEAM_MEMBER]: "You've reached the team member limit for your current plan.", + [LimitReason.WEBHOOK]: + "You've reached the webhook limit for your current plan.", [LimitReason.EMAIL_BLOCKED]: "You've reached the email sending limit for your current plan.", [LimitReason.EMAIL_DAILY_LIMIT_REACHED]: diff --git a/packages/ui/src/code-block.tsx b/packages/ui/src/code-block.tsx index e5ea79f..dc6dc09 100644 --- a/packages/ui/src/code-block.tsx +++ b/packages/ui/src/code-block.tsx @@ -6,7 +6,7 @@ import { cn } from "../lib/utils"; interface Props { children: string; - lang: BundledLanguage; + lang: BundledLanguage | "text"; className?: string; }