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

[refactor, chore] 인터랙션 페이지 유저플로우에 맞게 수정 #94

Merged
merged 3 commits into from
Aug 13, 2024

Conversation

darkdulgi
Copy link
Collaborator

#️⃣ 연관 이슈

📝 작업 내용

  • 인터랙션 페이지를 유저플로우에 따라 수정

Wiki에서 유저 플로우 참조해주세요.

@darkdulgi darkdulgi added chore 개발과 직접적인 연관이 없음 refactor 코드 리팩토링 labels Aug 13, 2024
@darkdulgi darkdulgi self-assigned this Aug 13, 2024

function getEventDate(index) {
const day = ["일", "월", "화", "수", "목", "금", "토"];
const fullDate = new Date(2024, 8, 9 + index);
const fullDate = new Date(EVENT_START_DATE.getTime() + index * 24 * 60 * 60 * 1000);
Copy link
Collaborator

Choose a reason for hiding this comment

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

24 * 60 * 60 * 1000은 매직 넘버이므로, 별도의 상수로 분리해 주세요.

@@ -33,7 +34,6 @@ export default function InteractionAnswer({
})
.then((res) => {
console.log(res);
setIsJoined(true);
})
.catch((e) => {
console.log(e);
Copy link
Collaborator

Choose a reason for hiding this comment

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

여기 기능이 빠졌어요

Copy link
Collaborator

Choose a reason for hiding this comment

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

향후 해당부분 기능 체크리스트에 저장해두었다가 나중에 추가해주시면 감사하겠습니다

@lybell-art lybell-art merged commit 3fd8ca8 into dev Aug 13, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
chore 개발과 직접적인 연관이 없음 refactor 코드 리팩토링
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[feat] 메인-인터랙션 모달 [feat] 메인-인터랙션 페이지
2 participants