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

데모데이 버그 수정 #592

Merged
merged 6 commits into from
Sep 30, 2024
Merged

데모데이 버그 수정 #592

merged 6 commits into from
Sep 30, 2024

Conversation

ss0526100
Copy link
Contributor

PR의 목적이 무엇인가요?

이슈 ID는 무엇인가요?

설명

env api-url과 baseAPIurl 분리
removeBaseUrl 삭제]
nonDrag,nonScroll 분리
DarakbangInvitationPage- 코드를 복사한 경우 유저 피드백 추가DarakbangInvitationRoute- 참여한 다락방인 경우 분기처리
slashRoute- 뒤로가기 제한

@ss0526100 ss0526100 added FE 프론트엔드 관련 이슈입니다. 🚑 버그 fix (develop에서 파생된 문제) labels Sep 30, 2024
@ss0526100 ss0526100 self-assigned this Sep 30, 2024
Comment on lines -4 to +14
nonScroll: css`
nonDrag: css`
user-select: none;
`,
cursorPointer: css`
cursor: pointer;
`,
nonScroll: css`
&::-webkit-scrollbar {
display: none;
}
`,
Copy link
Contributor

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`;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

API url 변경 대응 감사합니다.

Comment on lines -13 to +24
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 />;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

각 상황 별로 histroy수정사항 반영 고생했습니다.

@ss0526100 ss0526100 merged commit d5857e4 into develop-frontend Sep 30, 2024
1 check passed
@ss0526100 ss0526100 deleted the fix/#591 branch September 30, 2024 04:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
FE 프론트엔드 관련 이슈입니다. 🚑 버그 fix (develop에서 파생된 문제)
Projects
Status: 완료
Development

Successfully merging this pull request may close these issues.

3 participants