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
export const isInvalidRefreshTokenError = (errorCode: keyof typeof ErrorMessage) =>
errorCode === '1011' || errorCode === '1009';
에서 1011번의 경우 리프레시토큰은 유효한 경우이기 때문에 함수의 네이밍과 내용이 일치하지 않는다. 추가로 스펠링을 수정해야한다
예상 시간
The text was updated successfully, but these errors were encountered:
버그 상황
export const isInvalidRefreshTokenError = (errorCode: keyof typeof ErrorMessage) =>
errorCode === '1011' || errorCode === '1009';
에서 1011번의 경우 리프레시토큰은 유효한 경우이기 때문에 함수의 네이밍과 내용이 일치하지 않는다. 추가로 스펠링을 수정해야한다
예상 시간
The text was updated successfully, but these errors were encountered: