diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useApi.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useApi.ts index 77bea2b2855..3416042f95a 100644 --- a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useApi.ts +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useApi.ts @@ -32,7 +32,6 @@ export type Account = { image?: string | null; name?: string; email?: string; - advancedEnabled: boolean; emailConfirmedAt?: string; unconfirmedEmail?: string; emailConfirmationWalletAddress?: string; @@ -41,7 +40,6 @@ export type Account = { billing: "email" | "none"; updates: "email" | "none"; }; - // TODO - add image URL }; interface UpdateAccountNotificationsInput { diff --git a/apps/dashboard/src/stories/stubs.ts b/apps/dashboard/src/stories/stubs.ts index fc801af8e5f..17f64abf382 100644 --- a/apps/dashboard/src/stories/stubs.ts +++ b/apps/dashboard/src/stories/stubs.ts @@ -333,7 +333,6 @@ export function newAccountStub(overrides?: Partial): Account { name: undefined, id: "foo", isStaff: false, - advancedEnabled: false, creatorWalletAddress: "0x1F846F6DAE38E1C88D71EAA191760B15f38B7A37", ...overrides, };