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
수정 전:
api.defaults.headers.common['Authorization'] = sessionStorage.getItem('Access_token');
수정 후:
config.headers['Authorization'] = sessionStorage.getItem('Access_token');
위와 같이 수정할 경우, 새로고침시에도 인터셉터가 실행이 됩니다. 실행되는 이유를 예측해보자면 첫 번째로 default보다 config 설정이 우선순위가 되는 것이 있고, 두 번째로는 인터셉터에서 인자로 config가 들어가기 때문에 더 정확하게 실행이 되는 것 같습니다.
🗒 이슈 내용
새로고침시 로그인은 유지되나 참여중인 모임이 조회되지 않습니다.
useEffect의 두번째 인자값을 주지않는 방식으로 해결가능하나 무한반복되어 다른방법을 모색중에 있습니다.
The text was updated successfully, but these errors were encountered: