diff --git a/frontend/src/components/topbar/components.tsx b/frontend/src/components/topbar/components.tsx index 5e2f64812..01f8e5dce 100644 --- a/frontend/src/components/topbar/components.tsx +++ b/frontend/src/components/topbar/components.tsx @@ -640,6 +640,10 @@ const KeyboardShortcut = ({ export const CopyCorePubkey = () => { const public_key = useRead("GetCoreInfo", {}).data?.public_key; + + // Don't show for non https, copy / clipboard won't work. + if (!location.protocol.startsWith("https")) return; + return (