Browse Source

Fixed type

Taichi Masuyama 4 years ago
parent
commit
1c6bc48c68
1 changed files with 1 additions and 1 deletions
  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';
 import { Ref } from './common';
 
 
 export interface IUserUISettings {
 export interface IUserUISettings {
-  userId: Ref<IUser> | null;
+  user: Ref<IUser> | null;
   isSidebarCollapsed: boolean,
   isSidebarCollapsed: boolean,
   currentSidebarContents: SidebarContentsType,
   currentSidebarContents: SidebarContentsType,
   currentProductNavWidth: number,
   currentProductNavWidth: number,