Explorar el Código

add realName?: string;

visuddhinanda hace 3 años
padre
commit
dda6430b2e
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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 {
   id: string;
   nickName: string;
-  studioName: string;
+  studioName?: string;
+  realName?: string;
   avatar?: string;
 }
 interface IWidghtStudio {