Przeglądaj źródła

add realName?: string;

visuddhinanda 3 lat temu
rodzic
commit
dda6430b2e
1 zmienionych plików z 2 dodań i 1 usunięć
  1. 2 1
      dashboard/src/components/auth/StudioName.tsx

+ 2 - 1
dashboard/src/components/auth/StudioName.tsx

@@ -5,7 +5,8 @@ import StudioCard from "./StudioCard";
 export interface IStudio {
 export interface IStudio {
   id: string;
   id: string;
   nickName: string;
   nickName: string;
-  studioName: string;
+  studioName?: string;
+  realName?: string;
   avatar?: string;
   avatar?: string;
 }
 }
 interface IWidghtStudio {
 interface IWidghtStudio {