Skip to content

Commit 5a79b84

Browse files
committed
rename anonymous to includeInDebugSnapshot
1 parent fd010ee commit 5a79b84

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/app-metadata-controller/src/AppMetadataController.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type {
22
StateMetadata,
33
ControllerGetStateAction,
44
ControllerStateChangeEvent,
5-
} from '@metamask/base-controller';
5+
} from '@metamask/base-controller/next';
66
import { BaseController } from '@metamask/base-controller/next';
77
import type { Messenger } from '@metamask/messenger';
88

@@ -103,25 +103,25 @@ const controllerMetadata = {
103103
currentAppVersion: {
104104
includeInStateLogs: true,
105105
persist: true,
106-
anonymous: true,
106+
includeInDebugSnapshot: true,
107107
usedInUi: false,
108108
},
109109
previousAppVersion: {
110110
includeInStateLogs: true,
111111
persist: true,
112-
anonymous: true,
112+
includeInDebugSnapshot: true,
113113
usedInUi: false,
114114
},
115115
previousMigrationVersion: {
116116
includeInStateLogs: true,
117117
persist: true,
118-
anonymous: true,
118+
includeInDebugSnapshot: true,
119119
usedInUi: false,
120120
},
121121
currentMigrationVersion: {
122122
includeInStateLogs: true,
123123
persist: true,
124-
anonymous: true,
124+
includeInDebugSnapshot: true,
125125
usedInUi: false,
126126
},
127127
} satisfies StateMetadata<AppMetadataControllerState>;

0 commit comments

Comments
 (0)