fix: cast to any for _mock property in settings
All checks were successful
Deploy to Coolify / deploy (push) Successful in 4s
All checks were successful
Deploy to Coolify / deploy (push) Successful in 4s
This commit is contained in:
@@ -344,7 +344,7 @@ export default function Home() {
|
|||||||
{ label: "HA Token", value: isDemo ? "❌ Не настроен" : "✅ Настроен" },
|
{ label: "HA Token", value: isDemo ? "❌ Не настроен" : "✅ Настроен" },
|
||||||
{ label: "Vikunja", value: "✅ Подключён" },
|
{ label: "Vikunja", value: "✅ Подключён" },
|
||||||
{ label: "Pulse API", value: "✅ Подключён" },
|
{ label: "Pulse API", value: "✅ Подключён" },
|
||||||
{ label: "Очиститель", value: airPurifier?._mock ? "⚡ Демо" : "✅ Реальный" },
|
{ label: "Очиститель", value: (airPurifier as any)?._mock ? "⚡ Демо" : "✅ Реальный" },
|
||||||
].map((item) => (
|
].map((item) => (
|
||||||
<div
|
<div
|
||||||
key={item.label}
|
key={item.label}
|
||||||
|
|||||||
Reference in New Issue
Block a user