diff --git a/client/src/pages/Settings.jsx b/client/src/pages/Settings.jsx index 9e2c96e..89e38af 100644 --- a/client/src/pages/Settings.jsx +++ b/client/src/pages/Settings.jsx @@ -196,6 +196,7 @@ const GeneralSettings = ({ tenantConfig }) => { // Branding Settings Component const BrandingSettings = ({ tenantConfig, onRefresh }) => { const { user } = useAuth(); + const { t } = useTranslation(); const [branding, setBranding] = useState({ logo_url: '', primary_color: '#3B82F6', @@ -427,6 +428,7 @@ const BrandingSettings = ({ tenantConfig, onRefresh }) => { // Placeholder components for other tabs const SecuritySettings = ({ tenantConfig, onRefresh }) => { const { user } = useAuth(); + const { t } = useTranslation(); const [securitySettings, setSecuritySettings] = useState({ ip_restriction_enabled: false, ip_whitelist: [],