From 41d2b44bcc58e6a5ede7e21a73489f2f68ca614a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20M=C3=A5rtensson?= Date: Tue, 30 Jul 2024 22:44:05 +0200 Subject: [PATCH] Make Oref0 error string in pop-up more accessible --- FreeAPS/Sources/Modules/Home/View/HomeRootView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FreeAPS/Sources/Modules/Home/View/HomeRootView.swift b/FreeAPS/Sources/Modules/Home/View/HomeRootView.swift index bc38ca3db4..353ac5b28d 100644 --- a/FreeAPS/Sources/Modules/Home/View/HomeRootView.swift +++ b/FreeAPS/Sources/Modules/Home/View/HomeRootView.swift @@ -780,7 +780,7 @@ extension Home { .font(.suggestionError) .padding(.bottom, 4) .padding(.top, 8) - Text(errorMessage).font(.buttonFont).foregroundColor(.loopRed) + Text(errorMessage).font(.suggestionError).fontWeight(.semibold).foregroundColor(.orange) } else if let suggestion = state.suggestion, (suggestion.bg ?? 100) == 400 { Text("Invalid CGM reading (HIGH).").font(.suggestionError).bold().foregroundColor(.loopRed).padding(.top, 8) Text("SMBs and High Temps Disabled.").font(.suggestionParts).foregroundColor(.white).padding(.bottom, 4)