From 93d6506443a021e3b71c19420b5967c94e178e96 Mon Sep 17 00:00:00 2001 From: wangxiaolei Date: Mon, 29 Jun 2026 09:52:58 +0800 Subject: [PATCH] fix: CAN_REPLACE_LOGO should be false (#38126) --- api/configs/enterprise/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/configs/enterprise/__init__.py b/api/configs/enterprise/__init__.py index 2c0eaeeb81b..27318911201 100644 --- a/api/configs/enterprise/__init__.py +++ b/api/configs/enterprise/__init__.py @@ -16,7 +16,7 @@ class EnterpriseFeatureConfig(BaseSettings): CAN_REPLACE_LOGO: bool = Field( description="Allow customization of the enterprise logo.", - default=True, + default=False, ) ENTERPRISE_REQUEST_TIMEOUT: int = Field(