fix(ui): Fix some ui bugs

This commit is contained in:
anhtunz
2025-02-28 09:47:29 +07:00
parent 50d96541e7
commit 314e32eaa9
11 changed files with 92 additions and 8 deletions

View File

@@ -48,7 +48,7 @@ class _HomeScreenState extends State<HomeScreen> {
super.initState();
homeBloc = BlocProvider.of(context);
getOwnerAndJoinedDevices();
const duration = Duration(seconds: 20);
const duration = Duration(seconds: 10);
getAllDevicesTimer =
Timer.periodic(duration, (Timer t) => getOwnerAndJoinedDevices());
}