Procházet zdrojové kódy

fix typecheck error

Yuki Takei před 4 roky
rodič
revize
69439accd8
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      packages/app/src/interfaces/user-ui-settings.ts

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

@@ -3,7 +3,7 @@ import { IUser } from './user';
 import { SidebarContentsType } from './ui';
 
 export interface IUserUISettings {
-  userId: IUser | string;
+  user: IUser | string;
   isSidebarCollapsed: boolean,
   currentSidebarContents: SidebarContentsType,
   currentProductNavWidth: number,