mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
Filter out ios devices for now
This commit is contained in:
parent
1d5a4d059b
commit
9e341c0384
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue