Hello, We are using dictionaries to hold parameters for network requests on our app. For example:
var params: [String: Any] = [:]
params["pageSize"] = 20
params["pageIndex"] = 0
We weren't experiencing any issues on Xcode 13, but after updating to Xcode 14 this approach seems to slow down editor extremely. So much so that even deleting a single line takes multiple seconds. Since we cannot change every single network request in our app and continue using Xcode 13 forever, is there a way to fix this issue?