Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

비로그인 시의 전체서비스 페이지 수정 #471

Merged
merged 1 commit into from
Dec 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/pages/AllServicesPage/AllServicesPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ export const AllServicesPage = () => {
<MenuItem
icon={<Pen />}
pageName="게스트 모집하기"
color={myId ? null : theme.PALETTE.GRAY_300}
onClickMenuItem={() => moveToPage(PATH_NAME.CREATE_GAME)}
/>
<MenuItem
icon={<Foot />}
pageName="내 근처 게스트 매치"
color={myId ? null : theme.PALETTE.GRAY_300}
onClickMenuItem={() => moveToPage(PATH_NAME.GAMES_NEAR)}
/>
<MenuItem
Expand All @@ -108,6 +108,7 @@ export const AllServicesPage = () => {
<MenuItem
icon={<Pen />}
pageName="크루 만들기"
color={myId ? null : theme.PALETTE.GRAY_300}
onClickMenuItem={() => moveToPage(PATH_NAME.CREATE_CREW)}
/>
<MenuItem
Expand Down
Loading