You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
useQuery를 사용하는 부분에서, 사용하는 다른 페이지로 넘어갈 때
staleTime 10분 이내임에도 불구하고 해당 api 재요청됨
Reproduce
useUser 사용 페이지/agenda/{agendaKey} 앞뒤로 왔다갔다하면서 network 요청 info 확인
useAgendaData 사용 페이지 /agenda/{agendaKey} 앞뒤로 왔다갔다 하면서 network 요청 agenda/?agendaKey 확인
Wanted
10분 이내에는 페이지를 이동하더라도 재요청이 일어나지 않는 것
Bug img / video
Etc
_app.tsx QueryClient default option 시도
useAgendaInfo / useUser 동일한 옵션으로 시도
{staleTime: 60*1000*10,// 10분 동안은 캐시를 사용cacheTime: 60*1000*10,// 10분 동안 캐시를 유지retry: 1,// 에러가 났을 때 1번 재시도refetchOnMount: false,// 페이지 진입 시에는 새로고침을 하지 않음}
The text was updated successfully, but these errors were encountered:
Desc
useQuery를 사용하는 부분에서, 사용하는 다른 페이지로 넘어갈 때
staleTime 10분 이내임에도 불구하고 해당 api 재요청됨
Reproduce
/agenda/{agendaKey}
앞뒤로 왔다갔다하면서 network 요청info
확인/agenda/{agendaKey}
앞뒤로 왔다갔다 하면서 network 요청agenda/?agendaKey
확인Wanted
10분 이내에는 페이지를 이동하더라도 재요청이 일어나지 않는 것
Bug img / video
Etc
The text was updated successfully, but these errors were encountered: