From 9b29afef3e2ae8b138bc49eb449b00a1936df6e9 Mon Sep 17 00:00:00 2001 From: Diogo Date: Fri, 6 Dec 2024 18:23:40 +0000 Subject: [PATCH] save request not needed --- apps/ios/Shared/Views/ChatList/ChatListView.swift | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/ios/Shared/Views/ChatList/ChatListView.swift b/apps/ios/Shared/Views/ChatList/ChatListView.swift index 9669e68ffb..1601987f51 100644 --- a/apps/ios/Shared/Views/ChatList/ChatListView.swift +++ b/apps/ios/Shared/Views/ChatList/ChatListView.swift @@ -69,14 +69,12 @@ struct AdvancedNetworkSettingsConfig { public var netCfg: NetCfg public var currentNetProxy: NetworkProxy public var netProxy: NetworkProxy - public var saveRequested: Bool static let defaults = AdvancedNetworkSettingsConfig( currentNetCfg: NetCfg.defaults, netCfg: NetCfg.defaults, currentNetProxy: networkProxyDefault.get(), - netProxy: networkProxyDefault.get(), - saveRequested: false + netProxy: networkProxyDefault.get() ) }