aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorĐỗ Văn Hoài Tuân <htuan03@gmail.com>2023-05-04 17:47:59 -0700
committerGitHub <noreply@github.com>2023-05-05 02:47:59 +0200
commit8813f81bdecabb4e7e7cfabd87ed3b13a20db0d7 (patch)
treed4adb0aa5118183549bf83b334e357a64425dccf
parent84371ed4561484e362a2072aa987b109f9bc60db (diff)
downloadVencord-8813f81bdecabb4e7e7cfabd87ed3b13a20db0d7.tar.gz
Vencord-8813f81bdecabb4e7e7cfabd87ed3b13a20db0d7.tar.bz2
Vencord-8813f81bdecabb4e7e7cfabd87ed3b13a20db0d7.zip
ShowConnections: Remove "(click to copy/open)" from tooltip (#1041)
-rw-r--r--src/plugins/showConnections/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/showConnections/index.tsx b/src/plugins/showConnections/index.tsx
index 7c0a46a..3c7c949 100644
--- a/src/plugins/showConnections/index.tsx
+++ b/src/plugins/showConnections/index.tsx
@@ -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 =>