feat: zap all on pubkey list

This commit is contained in:
2023-05-25 23:16:22 +01:00
parent 5b0af9ecfc
commit 86ed386bb6
5 changed files with 105 additions and 6 deletions

View File

@ -12,6 +12,7 @@ export default function AsyncButton(props: AsyncButtonProps) {
const [loading, setLoading] = useState<boolean>(false);
async function handle(e: React.MouseEvent) {
e.stopPropagation();
if (loading || props.disabled) return;
setLoading(true);
try {