1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-05-08 17:28:46 +01:00

Merge pull request #13057 from home-assistant/hide-sun-onboarding

Do not show the sun during onboarding
This commit is contained in:
Paulus Schoutsen
2022-07-01 11:05:45 -07:00
committed by GitHub
+7 -1
View File
@@ -30,7 +30,13 @@ import { HomeAssistant } from "../types";
import "./action-badge";
import "./integration-badge";
const HIDDEN_DOMAINS = new Set(["hassio", "met", "radio_browser", "rpi_power"]);
const HIDDEN_DOMAINS = new Set([
"hassio",
"met",
"radio_browser",
"rpi_power",
"sun",
]);
@customElement("onboarding-integrations")
class OnboardingIntegrations extends LitElement {