From 50ec6ff1943757054cca8015c779bfef13a332b5 Mon Sep 17 00:00:00 2001 From: Tangem Date: Wed, 15 May 2024 15:37:28 +0300 Subject: [PATCH] Updated on 2026-08-14 --- .../notifications/TravalaNotificationWithBackground.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ui/src/main/java/com/tangem/core/ui/components/notifications/TravalaNotificationWithBackground.kt b/core/ui/src/main/java/com/tangem/core/ui/components/notifications/TravalaNotificationWithBackground.kt index 577a847a5f..9e6ba3db1d 100644 --- a/core/ui/src/main/java/com/tangem/core/ui/components/notifications/TravalaNotificationWithBackground.kt +++ b/core/ui/src/main/java/com/tangem/core/ui/components/notifications/TravalaNotificationWithBackground.kt @@ -49,9 +49,9 @@ fun TravalaNotificationWithBackground(config: NotificationConfig, modifier: Modi Box( modifier = modifier .defaultMinSize(minHeight = TangemTheme.dimens.size62) - .background(Color.Black) .fillMaxWidth() .clip(TangemTheme.shapes.roundedCornersXMedium) + .background(Color.Black) .clickable( enabled = config.onClick != null, onClick = config.onClick ?: {},