diff --git a/components/forms/TransactionSigning.tsx b/components/forms/TransactionSigning.tsx index 7678eaf..accc20d 100644 --- a/components/forms/TransactionSigning.tsx +++ b/components/forms/TransactionSigning.tsx @@ -193,33 +193,37 @@ const TransactionSigning = (props: Props) => { }; return ( - - {signing === "signed" ? ( - + <> + +

Current Signers

+ {props.signatures.map((signature, i) => ( + + + + ))} + {!props.signatures.length ?

No signatures yet

: null} +
+ + {signing === "signed" ? (
-

You've signed this transaction.

+

You've signed this transaction

-
- ) : null} - {signing === "not_a_member" ? ( - + ) : null} + {signing === "not_a_member" ? (
-

You don't belong to this multisig.

+

You don't belong to this multisig

-
- ) : null} - {signing === "not_signed" ? ( - <> -

Sign this transaction

- + ) : null} + {signing === "not_signed" ? ( + <> {walletAccount ? ( <>

- Connected signer {walletAccount.bech32Address} ( - {walletType ?? "Unknown wallet type"}). + You can sign this transaction with {walletAccount.bech32Address} ( + {walletType ?? "Unknown wallet type"})