removed unnecessary concat
This commit is contained in:
parent
959c6b6d6c
commit
2662d875b9
|
@ -134,7 +134,7 @@
|
|||
newCollections = [];
|
||||
|
||||
try {
|
||||
newCollections = newCollections.concat(JSON.parse(schemas));
|
||||
newCollections = JSON.parse(schemas);
|
||||
} catch (_) {}
|
||||
|
||||
if (!Array.isArray(newCollections)) {
|
||||
|
|
Loading…
Reference in New Issue