From e485636ab9073cc01f956a07a30544b04a05983c Mon Sep 17 00:00:00 2001 From: nilsreichardt Date: Wed, 11 Oct 2023 15:02:15 +0200 Subject: [PATCH] Add `const` --- app/lib/dashboard/dashboard_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/dashboard/dashboard_page.dart b/app/lib/dashboard/dashboard_page.dart index 99ec03610..02a2ad773 100644 --- a/app/lib/dashboard/dashboard_page.dart +++ b/app/lib/dashboard/dashboard_page.dart @@ -99,7 +99,7 @@ class _DashboardPageState extends State { ), navigationItem: NavigationItem.overview, body: const DashboardPageBody(), - floatingActionButton: _DashboardPageFAB(), + floatingActionButton: const _DashboardPageFAB(), ); } }