From 6e47473415d85fd0a2d0b2d79cdcf8b7b4631391 Mon Sep 17 00:00:00 2001 From: cdxker Date: Fri, 20 Dec 2024 14:46:02 -0800 Subject: [PATCH] feature: change default SEARCH_COMPONENT_URL --- server/src/handlers/page_handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/handlers/page_handler.rs b/server/src/handlers/page_handler.rs index 5ca684b7bc..951c298599 100644 --- a/server/src/handlers/page_handler.rs +++ b/server/src/handlers/page_handler.rs @@ -290,7 +290,7 @@ pub async fn public_page( env::var("ADMIN_DASHBOARD_URL").unwrap_or("https://dashboard.trieve.ai".to_string()); let search_component_url = std::env::var("SEARCH_COMPONENT_URL") - .unwrap_or("https://search-component.trieve.ai/dist".to_string()); + .unwrap_or("https://search-component.trieve.ai".to_string()); if config.PUBLIC_DATASET.enabled { let templ = templates.get_template("page.html").unwrap();