Commit df86084c by Demid Merzlyakov

Remove feels like text from the Forecast screen.

parent e5a7196d
...@@ -51,7 +51,7 @@ class ForecastInfoCell: UITableViewCell { ...@@ -51,7 +51,7 @@ class ForecastInfoCell: UITableViewCell {
let minTemp = dailyWeather.minTemp?.settingsConverted.shortString ?? "--" let minTemp = dailyWeather.minTemp?.settingsConverted.shortString ?? "--"
tempLabel.text = "\(maxTemp)/\(minTemp)" tempLabel.text = "\(maxTemp)/\(minTemp)"
weatherTypeLabel.text = dailyWeather.type.localized(isDay: true) weatherTypeLabel.text = dailyWeather.type.localized(isDay: true)
weatherDescriptionLabel.text = "Feels like --" weatherDescriptionLabel.text = ""
//Conditions //Conditions
conditionsStackView.removeAll() conditionsStackView.removeAll()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment