From 9e341c038483152394591b7940054695f05cb48a Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sun, 18 Apr 2021 00:23:56 -0500 Subject: [PATCH] Filter out ios devices for now --- helpers/build-device-list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/build-device-list.js b/helpers/build-device-list.js index 2cbaec1..0311ffd 100644 --- a/helpers/build-device-list.js +++ b/helpers/build-device-list.js @@ -21,7 +21,7 @@ export default async function () { console.warn('Error fetching device list', error) }) - return rawDeviceList.map( device => { + return rawDeviceList.filter( device => ( device.type !== 'ios' ) ).map( device => { const slug = makeSlug( device.name ) return {