소스 검색

Fixed type

Taichi Masuyama 4 년 전
부모
커밋
1c6bc48c68
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/app/src/interfaces/user-ui-settings.ts

+ 1 - 1
packages/app/src/interfaces/user-ui-settings.ts

@@ -4,7 +4,7 @@ import { SidebarContentsType } from './ui';
 import { Ref } from './common';
 
 export interface IUserUISettings {
-  userId: Ref<IUser> | null;
+  user: Ref<IUser> | null;
   isSidebarCollapsed: boolean,
   currentSidebarContents: SidebarContentsType,
   currentProductNavWidth: number,