Added transient property to copied password

This commit is contained in:
pradyun 2023-04-28 20:12:37 +12:00
parent 1f756b1022
commit 74a60282a5

View File

@ -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");
}