Skip to content

Commit

Permalink
Fix parameter name in zwave_js WS API (#20981)
Browse files Browse the repository at this point in the history
  • Loading branch information
raman325 authored Jun 4, 2024
1 parent 9717304 commit d1ce06e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/data/zwave_js.ts
Original file line number Diff line number Diff line change
Expand Up @@ -487,14 +487,14 @@ export const stopZwaveExclusion = (hass: HomeAssistant, entry_id: string) =>
export const zwaveGrantSecurityClasses = (
hass: HomeAssistant,
entry_id: string,
security_classes: SecurityClass[],
client_side_auth?: boolean
securityClasses: SecurityClass[],
clientSideAuth?: boolean
) =>
hass.callWS({
type: "zwave_js/grant_security_classes",
entry_id,
security_classes,
client_side_auth,
securityClasses,
clientSideAuth,
});

export const zwaveTryParseDskFromQrCode = (
Expand Down

0 comments on commit d1ce06e

Please sign in to comment.