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

Commit 384a2c4c authored by Helen Qin's avatar Helen Qin Committed by Automerger Merge Worker
Browse files

Merge "Remove unwanted separator bar when description is empty" into udc-dev am: 4d795645

parents 093c70d8 4d795645
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -436,7 +436,8 @@ fun CreationSelectionCard(
                },
            )
        }
        if (createOptionInfo.footerDescription != null) {
        val footerDescription = createOptionInfo.footerDescription
        if (footerDescription != null && footerDescription.length > 0) {
            item {
                Divider(
                    thickness = 1.dp,
@@ -446,7 +447,7 @@ fun CreationSelectionCard(
            }
            item {
                Row(modifier = Modifier.fillMaxWidth().wrapContentHeight()) {
                    BodySmallText(text = createOptionInfo.footerDescription)
                    BodySmallText(text = footerDescription)
                }
            }
        }