We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e3d324 commit 5183aecCopy full SHA for 5183aec
src/core/config/CustomModesManager.ts
@@ -932,7 +932,7 @@ export class CustomModesManager {
932
// Parse the YAML content with proper type validation
933
let importData: ImportData
934
try {
935
- const parsed = this.parseYamlSafely(yamlContent, '')
+ const parsed = yaml.parse(yamlContent)
936
937
// Validate the structure
938
if (!parsed?.customModes || !Array.isArray(parsed.customModes) || parsed.customModes.length === 0) {
0 commit comments