We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cc5ff6 commit e0195e4Copy full SHA for e0195e4
renderer/components/SendMultisigLedgerAssetsFlow/Steps/CollectIdentities.tsx
@@ -69,7 +69,11 @@ export function CollectIdentities({
69
height="60px"
70
px={8}
71
onClick={() => {
72
- onSubmit([myIdentity, ...otherIdentities]);
+ // Trim whitespace from all identities
73
+ const allIdentities = [myIdentity, ...otherIdentities].map(
74
+ (identity) => identity.trim(),
75
+ );
76
+ onSubmit(allIdentities);
77
}}
78
>
79
Next
0 commit comments