Revert "Xcode 11.4 changes"

This reverts commit c306801149.
This commit is contained in:
Max Goedjen
2020-04-03 00:44:13 -07:00
parent c306801149
commit 30148ee3a4
2 changed files with 4 additions and 2 deletions

View File

@@ -110,7 +110,7 @@ struct ContentView<UpdaterType: UpdaterProtocol, AgentStatusCheckerType: AgentSt
} else {
fallback = Constants.emptyStoreTag
}
return self.storeList.stores.compactMap(\.secrets.first).first?.id ?? fallback
return self.storeList.stores.compactMap { $0.secrets.first }.first?.id ?? fallback
}
}