From 2deacbacab392e2cc8f71f7177e93ae3dc53e395 Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Sat, 2 Aug 2025 16:19:23 +0400 Subject: [PATCH] style: don't show tooltip for profiles with disabled proxies --- src/components/profile-data-table.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/profile-data-table.tsx b/src/components/profile-data-table.tsx index 38aeb4e..7f366f7 100644 --- a/src/components/profile-data-table.tsx +++ b/src/components/profile-data-table.tsx @@ -573,7 +573,7 @@ export function ProfilesDataTable({ ? `${proxyDisplayName}, ${proxyInfo.proxy_settings.proxy_type.toUpperCase()} (${ proxyInfo.proxy_settings.host }:${proxyInfo.proxy_settings.port})` - : "No proxy configured"; + : ""; return ( @@ -595,7 +595,7 @@ export function ProfilesDataTable({ )} - {tooltipText} + {tooltipText && {tooltipText}} ); },