Props 썸네일형 리스트형 useReducer의 initialState와 props 문제 이슈PC버전에서 사이드 메뉴를 통해 최초 이동 이후 페이지 이동 시 문제가 바뀌지 않는 버그가 있었습니다. 분석//ExamPage.tsx const { data: questionList, isError, isFetching, isSuccess, error, } = useGetExamQuery(round); const renderContent = () => { if (isFetching) { return ; } if (isError && error) { return ( ); } if (isSuccess && questionList.length === 0) { return ; } i.. 더보기 이전 1 다음