diff --git a/surfsense_web/app/dashboard/[search_space_id]/new-chat/[[...chat_id]]/page.tsx b/surfsense_web/app/dashboard/[search_space_id]/new-chat/[[...chat_id]]/page.tsx index 8928974d9..a594b740d 100644 --- a/surfsense_web/app/dashboard/[search_space_id]/new-chat/[[...chat_id]]/page.tsx +++ b/surfsense_web/app/dashboard/[search_space_id]/new-chat/[[...chat_id]]/page.tsx @@ -148,6 +148,8 @@ const TOOLS_WITH_UI = new Set([ "delete_google_drive_file", "create_onedrive_file", "delete_onedrive_file", + "create_dropbox_file", + "delete_dropbox_file", "create_calendar_event", "update_calendar_event", "delete_calendar_event", diff --git a/surfsense_web/components/layout/ui/sidebar/InboxSidebar.tsx b/surfsense_web/components/layout/ui/sidebar/InboxSidebar.tsx index d414f13c9..03f2bc982 100644 --- a/surfsense_web/components/layout/ui/sidebar/InboxSidebar.tsx +++ b/surfsense_web/components/layout/ui/sidebar/InboxSidebar.tsx @@ -111,6 +111,7 @@ function getConnectorTypeDisplayName(connectorType: string): string { CIRCLEBACK_CONNECTOR: "Circleback", MCP_CONNECTOR: "MCP", OBSIDIAN_CONNECTOR: "Obsidian", + ONEDRIVE_CONNECTOR: "OneDrive", DROPBOX_CONNECTOR: "Dropbox", TAVILY_API: "Tavily", SEARXNG_API: "SearXNG",