Taichi Masuyama 4 lat temu
rodzic
commit
ce7d3dc796
1 zmienionych plików z 2 dodań i 1 usunięć
  1. 2 1
      packages/app/src/interfaces/user-ui-settings.ts

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

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