use default statement

This commit is contained in:
Nick Winans 2022-09-25 20:18:57 -05:00
parent 52ea30e9e0
commit 0b8ac34ae8

View file

@ -245,10 +245,11 @@ jobs:
if (hm.features && hm.features.includes("keys")) {
return hm.requires.flatMap(i =>
metadata.interconnects[i].boards.flatMap(b => boardAndShield(b, hm))
) || [];
);
}
break;
case "interconnect":
default:
return [];
}
});