File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -268,8 +268,7 @@ export default class NetworkMap extends Extension {
268268 networkAddress : device . zh . networkAddress ,
269269 manufacturerName : device . zh . manufacturerName ,
270270 modelID : device . zh . modelID ,
271- // biome-ignore lint/style/noNonNullAssertion: TODO: biome migration: wrong typing? will be undefined if type=EndDevice?
272- failed : failed . get ( device ) ! ,
271+ failed : failed . get ( device ) ,
273272 lastSeen : device . zh . lastSeen ,
274273 definition,
275274 } ) ;
Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ export interface Zigbee2MQTTNetworkMap {
263263 networkAddress : number ;
264264 manufacturerName : string | undefined ;
265265 modelID : string | undefined ;
266- failed : string [ ] ;
266+ failed ? : string [ ] ;
267267 lastSeen : number | undefined ;
268268 definition ?: { model : string ; vendor : string ; supports : string ; description : string } ;
269269 } [ ] ;
You can’t perform that action at this time.
0 commit comments