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

bestGames 값이 존재할 경우 latestGames로 contents가 갱신되지 않는 문제 #285

Open
alwubin opened this issue Jan 22, 2025 · 0 comments · May be fixed by #287
Open

bestGames 값이 존재할 경우 latestGames로 contents가 갱신되지 않는 문제 #285

alwubin opened this issue Jan 22, 2025 · 0 comments · May be fixed by #287
Assignees
Labels
🐛bug 버그 발견

Comments

@alwubin
Copy link
Collaborator

alwubin commented Jan 22, 2025

🐞 버그 내용

bestGames 값이 존재할 경우 latestGames로 contents가 갱신되지 않는 문제가 발생하고 있습니다.

⚠️ 버그 발생 과정

  const { bestGames } = useBestGameList(activeTab, isBestGamesEnabled);
  const { latestGames } = useLatestGameList(activeTab, isLatestGamesEnabled);

  const contents = bestGames || latestGames || [];
  • 현재 contents는 논리 연산을 통해 첫 번째 truthy 한 값을 가집니다.
  • bestGames가 첫 번째에 존재하고 이 값이 truth이면 latestGames의 존재 여부 상관없이 무시됩니다.
  • 결론적으로 두 값을 제어할 수 있는 조건이 따로 존재하지 않기 때문에 특정 상황에서 latestGames 값을 넣고 싶어도, bestGames 값이 존재하면 latestGames로 변경되지 않습니다.

📸 스크린샷 (선택)

🔆 참고 사항 (선택)

@alwubin alwubin added the 🐛bug 버그 발견 label Jan 22, 2025
@alwubin alwubin self-assigned this Jan 22, 2025
@alwubin alwubin added this to PICK-O Jan 22, 2025
@github-project-automation github-project-automation bot moved this to Todo in PICK-O Jan 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐛bug 버그 발견
Projects
Status: Todo
1 participant