File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ### Fixed
11+
12+ - In experimental ` next ` export, fix the ` StatePropertyMetadataConstraint ` type ([ #6942 ] ( https://github.com/MetaMask/core/pull/6942 ) )
13+ - It incorrectly used the old metadata property ` anonymous ` instead of ` includeInDebugSnapshot `
14+
1015## [ 8.4.2]
1116
1217### Fixed
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ export type StateDeriverConstraint = (value: never) => Json;
112112 * This type can be assigned to any `StatePropertyMetadata` type.
113113 */
114114export type StatePropertyMetadataConstraint = {
115- anonymous : boolean | StateDeriverConstraint ;
115+ includeInDebugSnapshot : boolean | StateDeriverConstraint ;
116116 includeInStateLogs ?: boolean | StateDeriverConstraint ;
117117 persist : boolean | StateDeriverConstraint ;
118118 usedInUi ?: boolean ;
You can’t perform that action at this time.
0 commit comments