From f1240a22db3db036907551f0dcd97ad509593c40 Mon Sep 17 00:00:00 2001 From: GareArc Date: Fri, 14 Mar 2025 13:26:44 -0400 Subject: [PATCH] fix: remove default value --- api/services/feature_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/services/feature_service.py b/api/services/feature_service.py index e5afcd09c4..1a3a4026ad 100644 --- a/api/services/feature_service.py +++ b/api/services/feature_service.py @@ -38,7 +38,7 @@ class LicenseModel(BaseModel): class BrandingModel(BaseModel): enabled: bool = False - application_title: str = "Dify" + application_title: str = "" login_page_logo: str = "" workspace_logo: str = "" favicon: str = ""