소스 검색

Added a comment

Taichi Masuyama 3 년 전
부모
커밋
edc127af77
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      packages/app/src/stores/editor.tsx

+ 2 - 0
packages/app/src/stores/editor.tsx

@@ -21,6 +21,8 @@ type EditorSettingsOperation = {
 }
 
 // TODO: Enable localStorageMiddleware
+//   - Unabling localStorageMiddleware occurrs a flickering problem when loading theme.
+//   - see: https://github.com/weseek/growi/pull/6781#discussion_r1000285786
 export const useEditorSettings = (): SWRResponseWithUtils<EditorSettingsOperation, IEditorSettings, Error> => {
   const { data: currentUser } = useCurrentUser();
   const { data: isGuestUser } = useIsGuestUser();