Skip to content

Commit bb320c9

Browse files
authored
Merge branch 'main' into feat/analytics
2 parents 2e52364 + efefcd7 commit bb320c9

15 files changed

Lines changed: 590 additions & 46 deletions

File tree

apps/desktop/src/features/servers/ServersPage.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff 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');

0 commit comments

Comments
 (0)