-
Notifications
You must be signed in to change notification settings - Fork 7
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
데모데이 버그 수정 #592
데모데이 버그 수정 #592
Conversation
nonScroll: css` | ||
nonDrag: css` | ||
user-select: none; | ||
`, | ||
cursorPointer: css` | ||
cursor: pointer; | ||
`, | ||
nonScroll: css` | ||
&::-webkit-scrollbar { | ||
display: none; | ||
} | ||
`, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nonScroll과 nonDrag를 분리해주셨네요. 나중에 해당 설정이 필요할때 편하기 이용가능할 것 같습니다.
const BASE_URL = `${process.env.BASE_URL}/v1`; | ||
const API_BASE_URL = `${process.env.API_BASE_URL}/v1`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
API url 변경 대응 감사합니다.
return <Navigate to={GET_ROUTES.nowDarakbang.main()} />; | ||
return <Navigate to={GET_ROUTES.nowDarakbang.main()} replace />; | ||
} | ||
if (!lastDarakbangId) { | ||
return <Navigate to={ROUTES.darakbangSelectOption} />; | ||
return <Navigate to={ROUTES.darakbangSelectOption} replace />; | ||
} | ||
} | ||
|
||
if (!token) { | ||
return <Navigate to={ROUTES.home} />; | ||
return <Navigate to={ROUTES.home} replace />; | ||
} | ||
|
||
return <Navigate to={ROUTES.home} />; | ||
return <Navigate to={ROUTES.home} replace />; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
각 상황 별로 histroy수정사항 반영 고생했습니다.
PR의 목적이 무엇인가요?
이슈 ID는 무엇인가요?
설명
env api-url과 baseAPIurl 분리
removeBaseUrl 삭제]
nonDrag,nonScroll 분리
DarakbangInvitationPage- 코드를 복사한 경우 유저 피드백 추가DarakbangInvitationRoute- 참여한 다락방인 경우 분기처리
slashRoute- 뒤로가기 제한