Skip to content

Commit

Permalink
fix: theme color 사용 시 객체분해할당 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ukkodeveloper committed Nov 17, 2023
1 parent a6eb162 commit a2fb196
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/shared/components/ConfirmModal/ConfirmModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ const Container = styled.section`
margin: 0 auto;
padding: 24px;
color: ${({ theme: color }) => color.white};
color: ${({ theme: { color } }) => color.white};
background-color: ${({ theme: color }) => color.black300};
background-color: ${({ theme: { color } }) => color.black300};
border: none;
border-radius: 16px;
`;
Expand Down

0 comments on commit a2fb196

Please sign in to comment.