From 74c1cb51f624b0ab11d2fa9e89790eb91412615f Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 22 Feb 2022 09:49:17 +0100 Subject: [PATCH] nothing here --- src/lib/components/CopyPasswordField.svelte | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib/components/CopyPasswordField.svelte b/src/lib/components/CopyPasswordField.svelte index 8366fb0c8..de9c6c9af 100644 --- a/src/lib/components/CopyPasswordField.svelte +++ b/src/lib/components/CopyPasswordField.svelte @@ -17,9 +17,6 @@ let disabledClass = 'bg-coolback disabled:bg-coolblack'; let isHttps = browser && window.location.protocol === 'https:'; - function showActions(value) { - actionsShow = value; - } function copyToClipboard() { if (isHttps && navigator.clipboard) { navigator.clipboard.writeText(value);