From 1fd29bbfdd25473950861a29f929b780733bb7bc Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Sat, 27 Jun 2026 08:25:29 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20getFormatTime=20retorna=20String=3F=20?= =?UTF-8?q?=E2=80=94=20agregar=20fallback=20vacio?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- lib/ui/views/dashboard_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/views/dashboard_view.dart b/lib/ui/views/dashboard_view.dart index 8124345..59f1e3e 100644 --- a/lib/ui/views/dashboard_view.dart +++ b/lib/ui/views/dashboard_view.dart @@ -556,7 +556,7 @@ class _DashboardViewState extends State { const Icon(Icons.access_time, size: 17, color: Color(0xFF42A4EF)), const SizedBox(width: 6), Text( - ScheduleEntity.getFormatTime(_selectedHour!), + ScheduleEntity.getFormatTime(_selectedHour!) ?? '', style: const TextStyle(fontSize: 13), ), const Spacer(),