Skip to content

Commit

Permalink
fix: remove migrated setting value (microsoft#194732)
Browse files Browse the repository at this point in the history
  • Loading branch information
joyceerhl committed Oct 3, 2023
1 parent cb8bb7b commit 9106c64
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,14 @@ Registry.as<IConfigurationMigrationRegistry>(Extensions.ConfigurationMigration)
key: 'workbench.editor.untitled.hint',
migrateFn: (value, _accessor) => ([
[emptyTextEditorHintSetting, { value }],
['workbench.editor.untitled.hint', { value: undefined }]
])
},
{
key: 'accessibility.verbosity.untitledHint',
migrateFn: (value, _accessor) => ([
[AccessibilityVerbositySettingId.EmptyEditorHint, { value }],
['accessibility.verbosity.untitledHint', { value: undefined }]
])
}]);

Expand Down

0 comments on commit 9106c64

Please sign in to comment.