diff --git a/src/panels/config/helpers/forms/ha-input_number-form.ts b/src/panels/config/helpers/forms/ha-input_number-form.ts
index e6de46796f..a1196cbf22 100644
--- a/src/panels/config/helpers/forms/ha-input_number-form.ts
+++ b/src/panels/config/helpers/forms/ha-input_number-form.ts
@@ -26,8 +26,6 @@ class HaInputNumberForm extends LitElement {
@state() private _min?: number;
- @state() private _initial?: number;
-
@state() private _mode?: string;
@state() private _step?: number;
@@ -44,7 +42,6 @@ class HaInputNumberForm extends LitElement {
this._min = item.min ?? 0;
this._mode = item.mode || "slider";
this._step = item.step ?? 1;
- this._initial = item.initial ?? 0;
this._unit_of_measurement = item.unit_of_measurement;
} else {
this._item = {
@@ -57,7 +54,6 @@ class HaInputNumberForm extends LitElement {
this._min = 0;
this._mode = "slider";
this._step = 1;
- this._initial = 0;
}
}
@@ -117,15 +113,6 @@ class HaInputNumberForm extends LitElement {
"ui.dialogs.helper_settings.input_number.max"
)}
>
-