File tree Expand file tree Collapse file tree
apps/desktop/src/features/servers
crates/mcpmux-gateway/src/pool/transport Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -709,15 +709,9 @@ export function ServersPage() {
709709 } ;
710710
711711 const handleUninstall = async ( server : ServerViewModel ) => {
712- // Import source-aware helpers
713- const { getUninstallConfirmMessage, getUninstallLabel } = await import ( '@/components/SourceBadge' ) ;
714- const confirmMsg = getUninstallConfirmMessage ( server . name , server . installation_source ) ;
712+ const { getUninstallLabel } = await import ( '@/components/SourceBadge' ) ;
715713 const actionLabel = getUninstallLabel ( server . installation_source ) ;
716-
717- if ( ! confirm ( confirmMsg ) ) {
718- return ;
719- }
720-
714+
721715 setActionLoading ( `uninstall-${ server . id } ` ) ;
722716 try {
723717 const { uninstallServer } = await import ( '@/lib/api/registry' ) ;
You can’t perform that action at this time.
0 commit comments