()
| 58 | }; |
| 59 | |
| 60 | const handleCopyLink = async () => { |
| 61 | const streamUrl = getStreamUrl(); |
| 62 | if (!streamUrl) return; |
| 63 | await copyToClipboard(streamUrl, { |
| 64 | successTitle: 'Link Copied!', |
| 65 | successMessage: 'Stream link copied to clipboard', |
| 66 | }); |
| 67 | }; |
| 68 | |
| 69 | return ( |
| 70 | <Stack spacing="md" flex={1}> |
nothing calls this directly
no test coverage detected