Skip to content

Commit

Permalink
remove old key
Browse files Browse the repository at this point in the history
  • Loading branch information
grgia committed Dec 14, 2023
1 parent de409fa commit b43d4e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/styles/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -665,11 +665,11 @@ function getHorizontalStackedAvatarBorderStyle({theme, isHovered, isPressed, isI
let borderColor = shouldUseCardBackground ? theme.cardBG : theme.appBG;

if (isHovered) {
borderColor = isInReportAction ? theme.rowHover : theme.border;
borderColor = isInReportAction ? theme.hoverComponentBG : theme.border;
}

if (isPressed) {
borderColor = isInReportAction ? theme.rowHover : theme.buttonPressedBG;
borderColor = isInReportAction ? theme.hoverComponentBG : theme.buttonPressedBG;
}

return {borderColor};
Expand Down

0 comments on commit b43d4e6

Please sign in to comment.