File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ module Resource = {
143
143
let filteredOutdated =
144
144
applyNpmSearch (allOutDated , pattern )-> Belt .Array .map (m => Outdated (m ["item" ]))
145
145
146
- Belt .Array .concat ( filteredNpm , filteredUrls ) -> Belt . Array . concat ( filteredOutdated )
146
+ Belt .Array .concatMany ([ filteredNpm , filteredUrls , filteredOutdated ] )
147
147
}
148
148
}
149
149
@@ -383,7 +383,7 @@ let default = (props: props) => {
383
383
let npms = props ["packages" ]-> Belt .Array .map (pkg => Resource .Npm (pkg ))
384
384
let urls = props ["urlResources" ]-> Belt .Array .map (res => Resource .Url (res ))
385
385
let outdated = props ["unmaintained" ]-> Belt .Array .map (pkg => Resource .Outdated (pkg ))
386
- Belt .Array .concat ( npms , urls ) -> Belt . Array . concat ( outdated )
386
+ Belt .Array .concatMany ([ npms , urls , outdated ] )
387
387
}
388
388
389
389
let resources = switch state {
You can’t perform that action at this time.
0 commit comments