1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-20 02:38:53 +00:00

Fix add matter device my link (#28313)

This commit is contained in:
Bram Kragten
2025-12-03 15:30:26 +01:00
committed by GitHub
parent ebc354bf55
commit a918e878fa

View File

@@ -9,10 +9,10 @@ export class MatterAddDevice extends HTMLElement {
public hass!: HomeAssistant; public hass!: HomeAssistant;
connectedCallback() { connectedCallback() {
showMatterAddDeviceDialog(this); navigate("/config/devices/dashboard", {
navigate(`/config/devices`, {
replace: true, replace: true,
}); });
showMatterAddDeviceDialog(this);
} }
} }