From 2f243db5bbfb2fa477d9fa8120ad9fc8261e59af Mon Sep 17 00:00:00 2001 From: Vadim <44135514+vodemn@users.noreply.github.com> Date: Tue, 31 Oct 2023 18:31:16 +0100 Subject: [PATCH] typo --- lib/data/remote_config_service.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/data/remote_config_service.dart b/lib/data/remote_config_service.dart index 66fa1a0..9fc83fc 100644 --- a/lib/data/remote_config_service.dart +++ b/lib/data/remote_config_service.dart @@ -41,7 +41,7 @@ class RemoteConfigService { for (final value in FirebaseRemoteConfig.instance.getAll().entries) { try { final feature = Feature.values.firstWhere((f) => f.name == value.key); - result[feature] = MapEntry(feature, value.value.toValue(feature)); + result[feature] = value.value.toValue(feature); } catch (e) { log(e.toString()); }