Skip to content

Commit

Permalink
🐛fix: Contents.style.js - React does not recognize UpperCase 에러 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
ShinHeeEul committed Jun 24, 2024
1 parent 5c41102 commit 923c1de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/main/contents-item/Contents.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ export const StyledContentsMiniTitle = styled.div`
font-size: 0.9rem !important;
font-weight: 500;
color: ${(props) =>
props.signPerYesterday > 0
props.signperyesterday > 0
? "blue"
: props.signPerYesterday < 0
: props.signperyesterday < 0
? "orangered"
: "black"};
}
Expand Down

0 comments on commit 923c1de

Please sign in to comment.