diff --git a/packages/neon/neon/lib/src/pages/home.dart b/packages/neon/neon/lib/src/pages/home.dart index 620e6b7d..b28f7688 100644 --- a/packages/neon/neon/lib/src/pages/home.dart +++ b/packages/neon/neon/lib/src/pages/home.dart @@ -171,17 +171,9 @@ class _HomePageState extends State { stream: _appsBloc.notificationsAppImplementation, builder: (final context, final notificationsAppImplementation) => StreamBuilder( stream: _appsBloc.activeAppID, - builder: ( - final context, - final activeAppIDSnapshot, - ) => - StreamBuilder>( + builder: (final context, final activeAppIDSnapshot) => StreamBuilder>( stream: _accountsBloc.accounts, - builder: ( - final context, - final accountsSnapshot, - ) => - OptionBuilder( + builder: (final context, final accountsSnapshot) => OptionBuilder( option: _globalOptions.navigationMode, builder: (final context, final navigationMode) { final accounts = accountsSnapshot.data;