fix build

This commit is contained in:
KM Koushik
2026-01-18 21:44:25 +11:00
parent d3b6ba7c0a
commit eed37d09c6
2 changed files with 3 additions and 1 deletions
@@ -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]:
+1 -1
View File
@@ -6,7 +6,7 @@ import { cn } from "../lib/utils";
interface Props {
children: string;
lang: BundledLanguage;
lang: BundledLanguage | "text";
className?: string;
}