diff --git a/src/panels/lovelace/editor/structs/action-struct.ts b/src/panels/lovelace/editor/structs/action-struct.ts index 591b9c0e8f..d0229a9908 100644 --- a/src/panels/lovelace/editor/structs/action-struct.ts +++ b/src/panels/lovelace/editor/structs/action-struct.ts @@ -58,10 +58,6 @@ const actionConfigStructAssist = type({ start_listening: optional(boolean()), }); -const actionConfigStructCustom = type({ - action: literal("fire-dom-event"), -}); - export const actionConfigStructType = object({ action: enums([ "none", @@ -81,9 +77,6 @@ export const actionConfigStruct = dynamic((value) => { case "call-service": { return actionConfigStructService; } - case "fire-dom-event": { - return actionConfigStructCustom; - } case "navigate": { return actionConfigStructNavigate; }