@@ -209,13 +209,13 @@ const ListGatewayConfigsUI = ({
209209 } ,
210210 {
211211 key : "edit" ,
212- label : "Edit AI Gateway" ,
212+ label : "Edit AI Gateway Config " ,
213213 color : colors . warning ,
214214 icon : figures . pointer ,
215215 } ,
216216 {
217217 key : "delete" ,
218- label : "Delete AI Gateway" ,
218+ label : "Delete AI Gateway Config " ,
219219 color : colors . error ,
220220 icon : figures . cross ,
221221 } ,
@@ -319,7 +319,7 @@ const ListGatewayConfigsUI = ({
319319 case "delete" :
320320 await client . gatewayConfigs . delete ( config . id ) ;
321321 setOperationResult (
322- `AI gateway "${ config . name } " deleted successfully` ,
322+ `AI gateway config "${ config . name } " deleted successfully` ,
323323 ) ;
324324 break ;
325325 }
@@ -481,11 +481,11 @@ const ListGatewayConfigsUI = ({
481481 if ( showDeleteConfirm && selectedConfig ) {
482482 return (
483483 < ConfirmationPrompt
484- title = "Delete AI Gateway"
484+ title = "Delete AI Gateway Config "
485485 message = { `Are you sure you want to delete "${ selectedConfig . name } "?` }
486- details = "This action cannot be undone. Any devboxes using this AI gateway will no longer have access to it."
486+ details = "This action cannot be undone. Any devboxes using this AI gateway config will no longer have access to it."
487487 breadcrumbItems = { [
488- { label : "AI Gateways " } ,
488+ { label : "AI Gateway Configs " } ,
489489 { label : selectedConfig . name || selectedConfig . id } ,
490490 { label : "Delete" , active : true } ,
491491 ] }
@@ -511,7 +511,7 @@ const ListGatewayConfigsUI = ({
511511 < >
512512 < Breadcrumb
513513 items = { [
514- { label : "AI Gateways " } ,
514+ { label : "AI Gateway Configs " } ,
515515 {
516516 label : selectedConfig ?. name || selectedConfig ?. id || "Config" ,
517517 } ,
@@ -534,13 +534,13 @@ const ListGatewayConfigsUI = ({
534534 operations . find ( ( o ) => o . key === executingOperation ) ?. label ||
535535 "Operation" ;
536536 const messages : Record < string , string > = {
537- delete : "Deleting AI gateway..." ,
537+ delete : "Deleting AI gateway config ..." ,
538538 } ;
539539 return (
540540 < >
541541 < Breadcrumb
542542 items = { [
543- { label : "AI Gateways " } ,
543+ { label : "AI Gateway Configs " } ,
544544 { label : selectedConfig . name || selectedConfig . id } ,
545545 { label : operationLabel , active : true } ,
546546 ] }
@@ -589,8 +589,8 @@ const ListGatewayConfigsUI = ({
589589 if ( loading && configs . length === 0 ) {
590590 return (
591591 < >
592- < Breadcrumb items = { [ { label : "AI Gateways " , active : true } ] } />
593- < SpinnerComponent message = "Loading AI gateways ..." />
592+ < Breadcrumb items = { [ { label : "AI Gateway Configs " , active : true } ] } />
593+ < SpinnerComponent message = "Loading AI gateway configs ..." />
594594 </ >
595595 ) ;
596596 }
@@ -599,16 +599,16 @@ const ListGatewayConfigsUI = ({
599599 if ( error ) {
600600 return (
601601 < >
602- < Breadcrumb items = { [ { label : "AI Gateways " , active : true } ] } />
603- < ErrorMessage message = "Failed to list AI gateways " error = { error } />
602+ < Breadcrumb items = { [ { label : "AI Gateway Configs " , active : true } ] } />
603+ < ErrorMessage message = "Failed to list AI gateway configs " error = { error } />
604604 </ >
605605 ) ;
606606 }
607607
608608 // Main list view
609609 return (
610610 < >
611- < Breadcrumb items = { [ { label : "AI Gateways " , active : true } ] } />
611+ < Breadcrumb items = { [ { label : "AI Gateway Configs " , active : true } ] } />
612612
613613 { /* Search bar */ }
614614 < SearchBar
@@ -618,7 +618,7 @@ const ListGatewayConfigsUI = ({
618618 resultCount = { totalCount }
619619 onSearchChange = { search . setSearchQuery }
620620 onSearchSubmit = { search . submitSearch }
621- placeholder = "Search AI gateways ..."
621+ placeholder = "Search AI gateway configs ..."
622622 />
623623
624624 { /* Table - hide when popup is shown */ }
@@ -631,7 +631,7 @@ const ListGatewayConfigsUI = ({
631631 columns = { columns }
632632 emptyState = {
633633 < Text color = { colors . textDim } >
634- { figures . info } No AI gateways found. Press [c] to create one.
634+ { figures . info } No AI gateway configs found. Press [c] to create one.
635635 </ Text >
636636 }
637637 />
0 commit comments