diff --git a/src/components/profile-selector-dialog.tsx b/src/components/profile-selector-dialog.tsx index 75a6a2c..b8d8431 100644 --- a/src/components/profile-selector-dialog.tsx +++ b/src/components/profile-selector-dialog.tsx @@ -239,8 +239,6 @@ export function ProfileSelectorDialog({ {profiles.map((profile) => { const isRunning = runningProfiles.has(profile.name); - const isLaunching = launchingProfiles.has(profile.name); - const isStopping = stoppingProfiles.has(profile.name); const canUseForLinks = browserState.canUseProfileForLinks(profile); const tooltipContent = getProfileTooltipContent(profile); @@ -289,16 +287,6 @@ export function ProfileSelectorDialog({ Running )} - {isLaunching && ( - - Launching - - )} - {isStopping && ( - - Stopping - - )} {!canUseForLinks && (