diff --git a/src/index.tsx b/src/index.tsx index a92b64a..d19785e 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3,7 +3,7 @@ import { randomInt } from "crypto"; export default async function Command() { const pass = generate(); - await Clipboard.copy(pass); + await Clipboard.copy(pass, { transient: true }); await showHUD("Password copied to clipboard"); }