feat: add Dropbox connector to display name mappings in UI and utility functions

This commit is contained in:
Anish Sarkar 2026-03-30 22:54:43 +05:30
parent 27b71c07b6
commit 86ce75ea39
2 changed files with 2 additions and 0 deletions

View file

@ -111,6 +111,7 @@ function getConnectorTypeDisplayName(connectorType: string): string {
CIRCLEBACK_CONNECTOR: "Circleback",
MCP_CONNECTOR: "MCP",
OBSIDIAN_CONNECTOR: "Obsidian",
DROPBOX_CONNECTOR: "Dropbox",
TAVILY_API: "Tavily",
SEARXNG_API: "SearXNG",
LINKUP_API: "Linkup",

View file

@ -30,6 +30,7 @@ export const getConnectorTypeDisplay = (type: string): string => {
YOUTUBE_CONNECTOR: "YouTube",
CIRCLEBACK_CONNECTOR: "Circleback",
OBSIDIAN_CONNECTOR: "Obsidian",
DROPBOX_CONNECTOR: "Dropbox",
MCP_CONNECTOR: "MCP Server",
};
return typeMap[type] || type;