inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

Kopher님의 게시글

Kopher Kopher

@kopher

수강평 작성수
9
평균평점
5.0

게시글 1

질문&답변

6.8 zustand 강의에서 devtools 미들웨어에 대한 질문입니다.

저도 강의 수강하다 같은 문제가 있어서 해결방법 남겨봅니다 - https://zustand.docs.pmnd.rs/middlewares/devtools#all-action-names-are-labeled-as- 'anonymous' ```ts const useSessionStore = create( devtools( combine(initialState, (set) => ({ actions: { setSession: (session: Session | null) => { set({ session, isLoaded: true }, undefined, "actions.setSession"); }, }, })), ), ); ```

좋아요수
1
댓글수
2
조회수
176