File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
components/Agentic/IncidentTemplate/MCPServerDialog Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export const MCPServerDialog = ({
2323} : MCPServerDialogProps ) => {
2424 const [ currentStep , setCurrentStep ] = useState ( 0 ) ;
2525 const [ connectionSettings , setConnectionSettings ] = useState (
26- serverData ?. connection ?? ""
26+ serverData ?. config ?? ""
2727 ) ;
2828 const [ testServerError , setTestServerError ] = useState < string > ( ) ;
2929 const [ addServerError , setAddServerError ] = useState < string > ( ) ;
Original file line number Diff line number Diff line change @@ -1232,7 +1232,7 @@ export interface DeleteIncidentAgentDirectivePayload {
12321232export interface MCPServerData {
12331233 uid : string ;
12341234 name : string ;
1235- connection : string ;
1235+ config : string ;
12361236 agents : string [ ] ;
12371237 editable : boolean ;
12381238 selected_tools : string [ ] ;
You can’t perform that action at this time.
0 commit comments