From 903aae4aaec0d9b4233f3ce032907ed042b6607c Mon Sep 17 00:00:00 2001 From: Alexander Borg Date: Sat, 20 Sep 2025 06:09:42 +0200 Subject: [PATCH] Fix jwt-token --- client/src/pages/Settings.jsx | 2 ++ 1 file changed, 2 insertions(+) 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: [],