We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 49724d3 + 91f0f4d commit 8ab4e6cCopy full SHA for 8ab4e6c
lib/util/user_data_util.dart
@@ -43,13 +43,13 @@ class UserDataUtil {
43
} else if (type == DataType.ADDRESS) {
44
Address address = Address(data);
45
if (address.isValid()) {
46
- return data;
+ return address.address;
47
}
48
} else if (type == DataType.MANTA_ADDRESS) {
49
// Check if an address or manta result
50
51
52
53
} else if (MantaWallet.parseUrl(data) != null) {
54
return data;
55
@@ -120,4 +120,4 @@ class UserDataUtil {
120
});
121
122
123
-}
+}
0 commit comments