diff --git a/lib/ui/dashboard/dashboard_screen.dart b/lib/ui/dashboard/dashboard_screen.dart index 044823a59..6cf3b6483 100644 --- a/lib/ui/dashboard/dashboard_screen.dart +++ b/lib/ui/dashboard/dashboard_screen.dart @@ -75,7 +75,7 @@ class _DashboardScreenState extends State ScrollController(initialScrollOffset: index * kDashboardPanelHeight) ..addListener(onScrollListener); - if ((state.company.settings.name ?? '').isEmpty) { + if (!state.isDemo && (state.company.settings.name ?? '').isEmpty) { WidgetsBinding.instance.addPostFrameCallback((duration) { showDialog( context: context,