Skip to content

Commit

Permalink
Remove emojis for evbg, cleaner look
Browse files Browse the repository at this point in the history
  • Loading branch information
dsnallfot committed May 16, 2024
1 parent bc20656 commit 78306ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LoopFollow/Controllers/Nightscout/DeviceStatus.swift
Original file line number Diff line number Diff line change
Expand Up @@ -496,11 +496,11 @@ extension MainViewController {
let formattedBGString = bgUnits.toDisplayUnits(eventualBGStringValue).replacingOccurrences(of: ",", with: ".")

if eventualBGFloatValue >= UserDefaultsRepository.highLine.value {
PredictionLabel.text = "⚠️ Prognos ⇢ \(formattedBGString)"
PredictionLabel.text = " Prognos ⇢ \(formattedBGString)"
PredictionLabel.textColor = loopYellow
predictionColor = loopYellow
} else if eventualBGFloatValue <= UserDefaultsRepository.lowLine.value {
PredictionLabel.text = "🆘 Prognos ⇢ \(formattedBGString)"
PredictionLabel.text = " Prognos ⇢ \(formattedBGString)"
PredictionLabel.textColor = loopRed
predictionColor = loopRed
} else if eventualBGFloatValue > UserDefaultsRepository.lowLine.value && eventualBGFloatValue < UserDefaultsRepository.highLine.value {
Expand Down

0 comments on commit 78306ea

Please sign in to comment.