run 'npx lerna link convert' to hoist common devDependencies to top

This commit is contained in:
Greg Weisbrod
2021-11-07 18:15:08 -05:00
parent 99c817ca8a
commit 43b55ab598
19 changed files with 311 additions and 338 deletions

View File

@@ -103,7 +103,7 @@ class STObject extends SerializedType {
let handled: JsonObject | undefined = undefined;
if (val && isValidXAddress(val.toString())) {
handled = handleXAddress(key, val.toString());
checkForDuplicateTags(handled, value as JsonObject);
checkForDuplicateTags(handled, value);
}
return Object.assign(acc, handled ?? { [key]: val });
}, {});