Skip to content

Commit

Permalink
fix: 로그인 필요 버튼들 색 변경 누락된 것 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dlwl98 committed Nov 24, 2023
1 parent 9cd7403 commit 2ce1e9b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/pages/AllServicesPage/AllServicesPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export const AllServicesPage = () => {
<MenuItem
icon={<Chat />}
pageName="메세지"
color={myId ? null : theme.PALETTE.GRAY_300}
onClickMenuItem={() => moveToPage(PATH_NAME.CHAT)}
/>
<MenuItem
Expand All @@ -84,7 +85,12 @@ export const AllServicesPage = () => {
color={myId ? null : theme.PALETTE.GRAY_300}
onClickMenuItem={() => moveToPage(PATH_NAME.CHAT)}
/>
<MenuItem icon={<Social />} pageName="소셜링" />

<MenuItem
icon={<Social />}
color={theme.PALETTE.GRAY_300}
pageName="소셜링"
/>
</FieldContainer>
<FieldContainer>
<Text size="1rem" weight={700}>
Expand Down

0 comments on commit 2ce1e9b

Please sign in to comment.