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 866b8fb commit 228da47Copy full SHA for 228da47
scripts/generateArguments.ts
@@ -292,7 +292,7 @@ function generateReadmeConfigTable(argumentInfos: ArgumentInfo[]): string {
292
defaultValueString = `\`"${defaultValue}"\``;
293
break;
294
case "object":
295
- defaultValueString = `\`"${JSON.stringify(defaultValue)}"\``;
+ defaultValueString = `\`${JSON.stringify(defaultValue)}\``;
296
297
default:
298
throw new Error(`Unsupported default value type: ${typeof defaultValue}`);
0 commit comments