diff --git a/components/dashboard/settings-tabs.tsx b/components/dashboard/settings-tabs.tsx index 997facc..a19d737 100644 --- a/components/dashboard/settings-tabs.tsx +++ b/components/dashboard/settings-tabs.tsx @@ -9,7 +9,10 @@ import { Button } from "@/components/ui/button" interface SettingsTabsProps { siteSettings: Record | null - smsSettings: Record | null + smsSettings: { + username: string + header: string + } | null } export function SettingsTabs({ siteSettings, smsSettings }: SettingsTabsProps) {