ShowConnections: Remove "(click to copy/open)" from tooltip (#1041)

This commit is contained in:
Đỗ Văn Hoài Tuân 2023-05-04 17:47:59 -07:00 committed by GitHub
parent 84371ed456
commit 8813f81bde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ function CompactConnectionComponent({ connection, theme }: { connection: Connect
return (
<Tooltip
text={`${connection.name}${!connection.verified ? " (unverified)" : ""} (click to ${url ? "open" : "copy"})`}
text={`${connection.name}${!connection.verified ? " (unverified)" : ""}`}
key={connection.id}
>
{tooltipProps =>