Fixed routines bug where it threw 404 because of a developer error.

This commit is contained in:
Faris Armoush
2025-04-28 10:02:41 +03:00
parent 405cccad03
commit f30b7b0831
2 changed files with 5 additions and 1 deletions

View File

@ -82,6 +82,7 @@ class RoutinesView extends StatelessWidget {
routines: state.scenes,
loadingStates: state.loadingStates,
loadingSceneId: state.loadingSceneId,
disablePlayButton: false,
),
RoutinesExpansionTile(
title: 'Automation',
@ -90,6 +91,7 @@ class RoutinesView extends StatelessWidget {
routines: state.automationList,
loadingStates: state.loadingStates,
loadingSceneId: state.loadingSceneId,
disablePlayButton: true,
),
const SizedBox(height: 15),
],