Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5ef0fe53 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Prevent blank sim label showing on screen." into main

parents 16ac2858 49e3afc5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ private fun LabelSimPreference(
                placeholder = {Text(text = originalSimCarrierName)},
                modifier = Modifier.fillMaxWidth()
            ) {
                titleSimName = it
                titleSimName = if (it.isEmpty()) originalSimCarrierName else it
            }
        },
    )