From 56a8769fc5f2b3d51c69ed4a333f46c376c1fdc4 Mon Sep 17 00:00:00 2001 From: Mathijs de Bruin Date: Thu, 8 Aug 2024 11:14:08 +0200 Subject: [PATCH] Remove unreferenced custom_url. --- backend/chainlit/config.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/backend/chainlit/config.py b/backend/chainlit/config.py index 9a78c950ad..5258eab15c 100644 --- a/backend/chainlit/config.py +++ b/backend/chainlit/config.py @@ -123,9 +123,6 @@ # Specify a custom meta image url. # custom_meta_image_url = "https://chainlit-cloud.s3.eu-west-3.amazonaws.com/logo/chainlit_banner.png" -# Specify a custom meta url. -# custom_url = "" - # Specify a custom build directory for the frontend. # This can be used to customize the frontend code. # Be careful: If this is a relative path, it should not start with a slash. @@ -261,8 +258,6 @@ class UISettings(DataClassJsonMixin): custom_font: Optional[str] = None # Optional custom meta tag for image preview custom_meta_image_url: Optional[str] = None - # Optional custom meta url - custom_url: Optional[str] = None # Optional custom build directory for the frontend custom_build: Optional[str] = None