diff --git a/src/components/profile-data-table.tsx b/src/components/profile-data-table.tsx
index 64d54b3..09886f8 100644
--- a/src/components/profile-data-table.tsx
+++ b/src/components/profile-data-table.tsx
@@ -388,7 +388,9 @@ export function ProfilesDataTable({
- {tooltipContent}
+ {tooltipContent && (
+ {tooltipContent}
+ )}
);
diff --git a/src/hooks/use-browser-support.ts b/src/hooks/use-browser-support.ts
index 856a4cb..a63cce4 100644
--- a/src/hooks/use-browser-support.ts
+++ b/src/hooks/use-browser-support.ts
@@ -164,7 +164,7 @@ export function useBrowserState(
const isBrowserUpdating = isUpdating?.(profile.browser) ?? false;
if (isRunning) {
- return "Click to forcefully stop the browser";
+ return "";
}
if (isBrowserUpdating) {
@@ -180,7 +180,7 @@ export function useBrowserState(
return `Only one ${browserDisplayName} browser instance can run at a time. Stop the running ${browserDisplayName} browser first.`;
}
- return "Click to launch the browser";
+ return "";
},
[
runningProfiles,