From 1c9cb06c6e40bd01b581daf9e20fc9c251614cef Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 13 May 2026 13:52:19 +0000 Subject: [PATCH] Remove mixpanel token reference Co-authored-by: FrPellissier <3436743+FrPellissier@users.noreply.github.com> --- entourage/Managers/EnvironmentConfigurationManager.swift | 5 ----- 1 file changed, 5 deletions(-) diff --git a/entourage/Managers/EnvironmentConfigurationManager.swift b/entourage/Managers/EnvironmentConfigurationManager.swift index 042e58387..0cfb6da04 100644 --- a/entourage/Managers/EnvironmentConfigurationManager.swift +++ b/entourage/Managers/EnvironmentConfigurationManager.swift @@ -18,7 +18,6 @@ struct UserStorageKey { static let amazonPictureFolder = "AmazonPictureFolder" static let amazonAccessKey = "AmazonAccessKey" static let amazonSecretKey = "AmazonSecretKey" - static let mixpanelToken = "MixpanelToken" static let awsPictureBucket = "AwsPictureBucket" static let environmentTypeKey = "EnvironmentType" static let googlePlaceApiKey = "GooglePlaceApiKey" @@ -77,10 +76,6 @@ class EnvironmentConfigurationManager { return apiKeysConfiguration(forKey: UserStorageKey.APIKey) } - var MixpanelToken : NSString { - return configuration(forKey: UserStorageKey.mixpanelToken) - } - var AwsPictureBucket : NSString { return configuration(forKey: UserStorageKey.awsPictureBucket) }