()
| 14 | }, [currentPipeline?.code]); |
| 15 | |
| 16 | const handleCopyCode = () => { |
| 17 | if (currentPipeline?.code) { |
| 18 | navigator.clipboard.writeText(currentPipeline.code); |
| 19 | // You could add a toast notification here |
| 20 | } |
| 21 | }; |
| 22 | |
| 23 | const handleDownloadCode = () => { |
| 24 | if (currentPipeline?.code) { |
nothing calls this directly
no outgoing calls
no test coverage detected