Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
agners committed Jun 26, 2024
1 parent 9a63030 commit bda9819
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export class ThreadConfigPanel extends SubscribeMixin(LitElement) {
((network.dataset.preferred_extended_address &&
this._otbrInfo[network.dataset.preferred_extended_address]) ||
Object.values(this._otbrInfo).find(
(otbr) => otbr.extended_pan_id === network.dataset.extended_pan_id
(otbr) => otbr.extended_pan_id === network.dataset?.extended_pan_id
));
const canImportKeychain =
this.hass.auth.external?.config.canTransferThreadCredentialsToKeychain &&
Expand Down

0 comments on commit bda9819

Please sign in to comment.