Updated on 2026-08-14

This commit is contained in:
Tangem 2025-07-31 14:54:44 +05:00
parent 4c51193221
commit 50c1623bfa
3 changed files with 6 additions and 6 deletions

View file

@ -129,7 +129,7 @@ fun TangemTopAppBar(
TopAppBarButton(
button = endButton,
tint = iconTint,
modifier = modifier.testTag(TopAppBarTestTags.MORE_BUTTON),
modifier = Modifier.testTag(TopAppBarTestTags.MORE_BUTTON),
)
}
},
@ -175,7 +175,7 @@ fun TangemTopAppBar(
TopAppBarButton(
button = startButton,
tint = iconTint,
modifier = modifier.testTag(TopAppBarTestTags.CLOSE_BUTTON),
modifier = Modifier.testTag(TopAppBarTestTags.CLOSE_BUTTON),
)
}
}

View file

@ -208,7 +208,7 @@ internal fun TextsBlock(
text = titleText,
color = titleColor,
style = TangemTheme.typography.button,
modifier = modifier.testTag(NotificationTestTags.TITLE),
modifier = Modifier.testTag(NotificationTestTags.TITLE),
)
SpacerH(height = TangemTheme.dimens.spacing2)
@ -218,7 +218,7 @@ internal fun TextsBlock(
text = subtitle.resolveReference(),
color = subtitleColor,
style = TangemTheme.typography.caption2,
modifier = modifier.testTag(NotificationTestTags.TEXT),
modifier = Modifier.testTag(NotificationTestTags.TEXT),
)
}
}