()
| 45 | const issueURL = buildIssueURL(message, stack) |
| 46 | |
| 47 | const copyReport = () => { |
| 48 | void clipboard.write?.(issueURL.toString()).then(() => setCopied(true)) |
| 49 | } |
| 50 | |
| 51 | const actions = [ |
| 52 | { key: "c", label: () => (copied() ? "✓ Copied" : "Copy report"), copy: true, onUse: copyReport }, |