Skip to content

Commit 00465aa

Browse files
fix(ts): Correct API response of ProjectApiResult (#7370)
1 parent a3a2799 commit 00465aa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/components/codeContext.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,14 @@ type ProjectApiResult = {
4040
dsn: string;
4141
dsnPublic: string;
4242
id: number;
43+
name: string;
4344
organizationId: number;
45+
organizationName: string;
4446
organizationSlug: string;
47+
projectName: string;
4548
projectSlug: string;
46-
slug: string;
49+
publicKey: string;
50+
secretKey: string;
4751
};
4852

4953
type UserApiResult = {

0 commit comments

Comments
 (0)