diff --git a/src/lib/components/copy.svelte b/src/lib/components/copy.svelte index 437b3fa73e..6b8921b469 100644 --- a/src/lib/components/copy.svelte +++ b/src/lib/components/copy.svelte @@ -5,10 +5,6 @@ const copy = async () => { try { - if (navigator.clipboard === undefined) { - //TODO: add fallback to old methods - throw new Error('Clipboard API only available to SSL'); - } await navigator.clipboard.writeText(value); addNotification({ message: 'Copied to clipboard.', diff --git a/src/lib/elements/forms/inputSelect.svelte b/src/lib/elements/forms/inputSelect.svelte index f9788d6199..7ab396f29c 100644 --- a/src/lib/elements/forms/inputSelect.svelte +++ b/src/lib/elements/forms/inputSelect.svelte @@ -15,7 +15,7 @@
- {#each options as option}