-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
[FE] 보유종목 구현 Dev client#19/watch list #114
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
확인했습니다
client/src/hooks/useGetStockholds.ts
Outdated
|
||
// 서버에서 StockHolds 목록 fetch 하는 함수 | ||
const getStockHolds = async () => { | ||
const token = localStorage.getItem('Authorization'); // 로컬 스토리지에서 토큰 가져오기 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
로컬 스토리지에 토큰 저장하는 key 값은 Authorization으로 변경된 건가요?
다른 코드에서도 로컬 스토리지에 있는 액세스 토큰을 활용하기 때문에 이 부분을 확실히 정해서 공유해주셔야 할 것 같습니다
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
accessToken 이라는 값으로 통일해서 다시 push 해주시면 감사하겠습니다-!
엑세스 토큰의 변수명 ->accessToken 리프레시 토큰의 변수명 ->refreshToken 전체 파일에 있는 모든 토큰 명을 변환 Issues #15
토큰 변수명 통일했습니다. 다시 확인해주세요 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
확인 완료했습니다
/stock/stockholds 에 get 요청을 보낸 후 데이터를 받아오는 훅 생성
위는 주식 정보, 아래는 개인 수익 구조로 구현
전체종목에서는 보유현금량, 관심종목에서는 검색창, 보유종목에서는 전체 수익량 보이도록 구현
레이아웃 및 디자인 수정
Issues #19