File tree 2 files changed +0
-6
lines changed
dialogs/config-flow/previews
2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,11 @@ export const subscribePreviewGeneric = (
12
12
hass : HomeAssistant ,
13
13
domain : string ,
14
14
flow_id : string ,
15
- flow_type : "config_flow" | "options_flow" ,
16
- user_input : Record < string , any > ,
17
15
callback : ( preview : GenericPreview ) => void
18
16
) : Promise < UnsubscribeFunc > =>
19
17
hass . connection . subscribeMessage ( callback , {
20
18
type : `${ domain } /start_preview` ,
21
19
flow_id,
22
- flow_type,
23
- user_input,
24
20
} ) ;
25
21
26
22
export const previewModule = ( domain : string ) : string =>
Original file line number Diff line number Diff line change @@ -84,8 +84,6 @@ export class FlowPreviewGeneric extends LitElement {
84
84
this . hass ,
85
85
this . domain ,
86
86
this . flowId ,
87
- this . flowType ,
88
- this . stepData ,
89
87
this . _setPreview
90
88
) ;
91
89
fireEvent ( this , "set-flow-errors" , { errors : { } } ) ;
You can’t perform that action at this time.
0 commit comments