update edit connectors page to support linear connector

This commit is contained in:
Adamsmith6300 2025-04-16 22:06:50 -07:00
parent f2f426d5eb
commit 32c721113c
5 changed files with 68 additions and 23 deletions

View file

@ -6,6 +6,7 @@ export const getConnectorTypeDisplay = (type: string): string => {
"SLACK_CONNECTOR": "Slack",
"NOTION_CONNECTOR": "Notion",
"GITHUB_CONNECTOR": "GitHub",
"LINEAR_CONNECTOR": "Linear",
};
return typeMap[type] || type;
};