fix aar error

This commit is contained in:
Pritimay Sarkar
2024-02-02 16:13:13 +05:30
parent 4958af6fd9
commit 9f2b53c7f7
5 changed files with 4 additions and 4 deletions

View File

@@ -892,7 +892,7 @@ class HemoCubeFragment : Fragment() {
fun deviceRatioClassification(ratio: Double?): String {
try {
if (ratio != null) {
if (ratio in 0.2..0.29) {
if (ratio in 0.1..0.29) {
// setSubtitleTextColor(R.color.green_2)
return "Normal"
}