remove optimistic option #2551

This commit is contained in:
MichaelDvP
2025-05-23 07:42:21 +02:00
parent ca81a02a8c
commit 090491aab6
12 changed files with 0 additions and 53 deletions

View File

@@ -296,18 +296,6 @@ const MqttSettings = () => {
}
label={LL.MQTT_PUBLISH_TEXT_3()}
/>
{data.ha_enabled && data.discovery_type === 0 && (
<BlockFormControlLabel
control={
<Checkbox
name="ha_optimistic"
checked={data.ha_optimistic}
onChange={updateFormValue}
/>
}
label="Optimistic"
/>
)}
</Grid>
{data.ha_enabled && (
<Grid container spacing={2} rowSpacing={0}>

View File

@@ -43,7 +43,6 @@ export interface MqttSettingsType {
mqtt_qos: number;
mqtt_retain: boolean;
ha_enabled: boolean;
ha_optimistic: boolean;
nested_format: number;
send_response: boolean;
publish_single: boolean;