Skip to content

Commit 88533d9

Browse files
authored
Remove advancedEnabled field from Account interface (#7118)
1 parent 6c3a8d3 commit 88533d9

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

apps/dashboard/src/@3rdweb-sdk/react/hooks/useApi.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export type Account = {
3232
image?: string | null;
3333
name?: string;
3434
email?: string;
35-
advancedEnabled: boolean;
3635
emailConfirmedAt?: string;
3736
unconfirmedEmail?: string;
3837
emailConfirmationWalletAddress?: string;
@@ -41,7 +40,6 @@ export type Account = {
4140
billing: "email" | "none";
4241
updates: "email" | "none";
4342
};
44-
// TODO - add image URL
4543
};
4644

4745
interface UpdateAccountNotificationsInput {

apps/dashboard/src/stories/stubs.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,6 @@ export function newAccountStub(overrides?: Partial<Account>): Account {
333333
name: undefined,
334334
id: "foo",
335335
isStaff: false,
336-
advancedEnabled: false,
337336
creatorWalletAddress: "0x1F846F6DAE38E1C88D71EAA191760B15f38B7A37",
338337
...overrides,
339338
};

0 commit comments

Comments
 (0)