MembershipRequest: add 3s countdown on authorize/reject actions

This commit is contained in:
Alex Gleason 2023-03-27 17:09:10 -05:00
parent f216b52b36
commit 22474e3ca9
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -42,6 +42,7 @@ const MembershipRequest: React.FC<IMembershipRequest> = ({ account, onAuthorize,
<AuthorizeRejectButtons
onAuthorize={handleAuthorize}
onReject={handleReject}
countdown={3000}
/>
</HStack>
);