We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
[Get] User
localstorage
Boolean(value) && options?.enabled
undefined
react-query
enabled
true
value ? options?.enabled : false
toast
The text was updated successfully, but these errors were encountered:
🐛 query enabled 옵션 수정 (#77)
59470b0
♻️ 리팩토링 (#77-2)
6ad7243
Merge pull request #78 from soma-dalda/feat/#77
6ee26bb
[#77] ♻️ , 🐛 : 이슈 수정 및 리팩토링
jaewoong2
No branches or pull requests
해야 할 일
[Get] User
요청을 하는 것 수정 (이유에 해당 되는것 모두 수정)localstorage
를 캐싱 하고 있는데, 이거를 계속 업데이트를 안함Boolean(value) && options?.enabled
가 의도한 대로 작동하지 않음undefined
가 return 되는데,react-query
의enabled
옵션은undefined
면true
로서 기능 하기 때문에value ? options?.enabled : false
로 변경toast
리팩토링The text was updated successfully, but these errors were encountered: