fixed quesiton mark issue

This commit is contained in:
dd 2021-02-08 15:57:16 -05:00
parent e532c02160
commit 58caf023a4
1 changed files with 2 additions and 1 deletions

View File

@ -222,7 +222,8 @@ export async function signTransactions({
wallet.publicKey,
...signers.map((s) => s.publicKey),
);
if (signers?.length > 0) {
if (signers && signers.length > 0) {
transaction.partialSign(...signers);
}
});