diff --git a/ui/frontend/Output/Gist.tsx b/ui/frontend/Output/Gist.tsx index 05c25629..ffcc1010 100644 --- a/ui/frontend/Output/Gist.tsx +++ b/ui/frontend/Output/Gist.tsx @@ -38,6 +38,7 @@ const Copied: React.FC = ({ children, href }) => { const startCopy = useCallback(() => { setCopied(true); + window.navigator.clipboard.writeText(href); setTimeout(() => { setCopied(false);