ShowConnections: Remove "(click to copy/open)" from tooltip (#1041)
This commit is contained in:
parent
84371ed456
commit
8813f81bde
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ function CompactConnectionComponent({ connection, theme }: { connection: Connect
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Tooltip
|
<Tooltip
|
||||||
text={`${connection.name}${!connection.verified ? " (unverified)" : ""} (click to ${url ? "open" : "copy"})`}
|
text={`${connection.name}${!connection.verified ? " (unverified)" : ""}`}
|
||||||
key={connection.id}
|
key={connection.id}
|
||||||
>
|
>
|
||||||
{tooltipProps =>
|
{tooltipProps =>
|
||||||
|
|
Loading…
Reference in a new issue