From 7e611fa99c4b4f0c5808b23b9a905a672850e7ce Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 6 Apr 2024 16:02:56 -0500 Subject: [PATCH] format fix --- .../lib/modules/map/providers/map_state.provider.dart | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/mobile/lib/modules/map/providers/map_state.provider.dart b/mobile/lib/modules/map/providers/map_state.provider.dart index 92041ad47b..e44e7f80b4 100644 --- a/mobile/lib/modules/map/providers/map_state.provider.dart +++ b/mobile/lib/modules/map/providers/map_state.provider.dart @@ -30,8 +30,8 @@ class MapStateNotifier extends _$MapStateNotifier { .getSetting(AppSettingsEnum.mapShowFavoriteOnly), includeArchived: appSettingsProvider .getSetting(AppSettingsEnum.mapIncludeArchived), - withPartners: appSettingsProvider - .getSetting(AppSettingsEnum.mapwithPartners), + withPartners: + appSettingsProvider.getSetting(AppSettingsEnum.mapwithPartners), relativeTime: appSettingsProvider.getSetting(AppSettingsEnum.mapRelativeDate), ); @@ -116,7 +116,6 @@ class MapStateNotifier extends _$MapStateNotifier { state = state.copyWith(shouldRefetchMarkers: shouldRefetch); } - void switchIncludeArchived(bool isIncludeArchived) { ref.read(appSettingsServiceProvider).setSetting( AppSettingsEnum.mapIncludeArchived, @@ -130,9 +129,9 @@ class MapStateNotifier extends _$MapStateNotifier { void switchWithPartners(bool isWithPartners) { ref.read(appSettingsServiceProvider).setSetting( - AppSettingsEnum.mapwithPartners, - isWithPartners, - ); + AppSettingsEnum.mapwithPartners, + isWithPartners, + ); state = state.copyWith( withPartners: isWithPartners, shouldRefetchMarkers: true,