Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
hamza-vd authored and ndegwamartin committed Feb 19, 2024
1 parent 0208082 commit 35de46f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,10 @@ fun LoginPage(
.testTag(APP_LOGO_TAG),
)
}
if (applicationConfiguration.appTitle.isNotEmpty() && applicationConfiguration.loginConfig.showAppTitle) {
if (
applicationConfiguration.appTitle.isNotEmpty() &&
applicationConfiguration.loginConfig.showAppTitle
) {
Text(
color = if (applicationConfiguration.useDarkTheme) Color.White else LoginDarkColor,
text = applicationConfiguration.appTitle,
Expand Down

0 comments on commit 35de46f

Please sign in to comment.