diff --git a/src/dialogs/config-flow/step-flow-create-entry.ts b/src/dialogs/config-flow/step-flow-create-entry.ts
index da5ab1d183..6f59bf593d 100644
--- a/src/dialogs/config-flow/step-flow-create-entry.ts
+++ b/src/dialogs/config-flow/step-flow-create-entry.ts
@@ -129,70 +129,73 @@ class StepFlowCreateEntry extends LitElement {
)}`
: nothing}
- ${devices.length === 0
- ? html`
- ${localize(
- "ui.panel.config.integrations.config_flow.created_config",
- { name: this.step.title }
- )}
-
`
- : html`
-
- ${devices.map(
- (device) => html`
-
-
- ${this.step.result?.domain
- ? html`

`
- : nothing}
-
- ${device.model || device.manufacturer}
- ${device.model
- ? html`
- ${device.manufacturer}
- `
- : nothing}
-
-
-
-
-
- `
+ ${devices.length === 0 &&
+ ["options_flow", "repair_flow"].includes(this.flowConfig.flowType)
+ ? nothing
+ : devices.length === 0
+ ? html`
+ ${localize(
+ "ui.panel.config.integrations.config_flow.created_config",
+ { name: this.step.title }
)}
-
- `}
+ `
+ : html`
+
+ ${devices.map(
+ (device) => html`
+
+
+ ${this.step.result?.domain
+ ? html`

`
+ : nothing}
+
+ ${device.model || device.manufacturer}
+ ${device.model
+ ? html`
+ ${device.manufacturer}
+ `
+ : nothing}
+
+
+
+
+
+ `
+ )}
+
+ `}