Fix try to map Set

This commit is contained in:
Sam Carlton 2022-04-27 19:26:35 -05:00
parent b9d05f5fa0
commit f83b0111b3

View file

@ -297,7 +297,9 @@ class BuildLists {
// Add device support
if ( this.shouldHaveDeviceSupport( listEntry ) ) {
listEntry.deviceSupport = this.lists[ 'device' ].map( device => {
const deviceList = Array.from( this.lists[ 'device' ] )
listEntry.deviceSupport = deviceList.map( device => {
const supportsApp = deviceSupportsApp( device, listEntry )
return {
...device,