chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-18 09:28:20 +00:00
parent fe143df151
commit 7afd477d1a

View File

@@ -76,7 +76,10 @@ async function writeClipboard(text: string): Promise<boolean> {
const clipboard = typeof navigator === "undefined" ? undefined : navigator.clipboard
if (!clipboard?.writeText) return false
return clipboard.writeText(text).then(() => true, () => false)
return clipboard.writeText(text).then(
() => true,
() => false,
)
}
function ShellSubmessage(props: { text: string; animate?: boolean }) {