Skip to content

Commit 2d2f949

Browse files
authored
fix(gatsby-remark-autolink-headers): remove incorrect default value for icon option (#27821)
1 parent 16c616a commit 2d2f949

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/gatsby-remark-autolink-headers/src/gatsby-node.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ exports.pluginOptionsSchema = ({ Joi }) =>
88
.try(Joi.string(), Joi.boolean())
99
.description(
1010
`SVG shape inside a template literal or boolean 'false'. Set your own svg or disable icon.`
11-
)
12-
.default(true),
11+
),
1312
className: Joi.string()
1413
.description(`Set your own class for the anchor.`)
1514
.default(`anchor`),

0 commit comments

Comments
 (0)