Browse Source

add realName: string;

visuddhinanda 2 years ago
parent
commit
9c572420a6
1 changed files with 2 additions and 1 deletions
  1. 2 1
      dashboard/src/components/api/Auth.ts

+ 2 - 1
dashboard/src/components/api/Auth.ts

@@ -39,7 +39,8 @@ export interface IUserApiResponse {
 export interface IStudioApiResponse {
   id: string;
   nickName: string;
-  studioName: string;
+  studioName?: string;
+  realName: string;
   avatar?: string;
   owner: IUserApiResponse;
 }