fix: get auth token for development (#4295)

This commit is contained in:
Peng Xiao
2023-09-12 13:31:58 +08:00
committed by GitHub
parent 98429bf89e
commit fc76163dd1
8 changed files with 131 additions and 34 deletions
+1 -1
View File
@@ -173,7 +173,7 @@ export type GetCurrentUserQuery = {
emailVerified: string | null;
avatarUrl: string | null;
createdAt: string | null;
token: { __typename?: 'TokenType'; token: string };
token: { __typename?: 'TokenType'; sessionToken: string | null };
};
};