Skip to content

Commit

Permalink
fix: use correct colors for the import send button (#2095)
Browse files Browse the repository at this point in the history
  • Loading branch information
trOnk12 authored Aug 16, 2023
1 parent e21fc7f commit 02e5794
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ fun SelfDeletionTimerButton(
colorFilter = ColorFilter.tint(
when {
isDisabled -> colorsScheme().onPrimaryButtonDisabled
isSelected -> colorsScheme().onPrimaryButtonSelected
isSelected -> colorsScheme().onSecondaryButtonSelected
else -> colorsScheme().onSecondaryButtonEnabled
}
)
Expand All @@ -197,7 +197,7 @@ fun SelfDeletionTimerButton(
},
colors = wireSecondaryButtonColors().copy(
disabled = colorsScheme().primaryButtonDisabled,
selected = colorsScheme().primaryButtonEnabled,
selected = colorsScheme().secondaryButtonSelected,
selectedOutline = colorsScheme().primaryButtonEnabled,
),
onClick = onSelfDeletionTimerClicked,
Expand Down

0 comments on commit 02e5794

Please sign in to comment.