-
Notifications
You must be signed in to change notification settings - Fork 0
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
Conversation
|
||
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); |
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.
24 * 60 * 60 * 1000은 매직 넘버이므로, 별도의 상수로 분리해 주세요.
@@ -33,7 +34,6 @@ export default function InteractionAnswer({ | |||
}) | |||
.then((res) => { | |||
console.log(res); | |||
setIsJoined(true); | |||
}) | |||
.catch((e) => { | |||
console.log(e); |
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.
여기 기능이 빠졌어요
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.
향후 해당부분 기능 체크리스트에 저장해두었다가 나중에 추가해주시면 감사하겠습니다
#️⃣ 연관 이슈
📝 작업 내용