mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-12 08:37:25 +02:00
fix(v2): remove unnecessary backtick in output (#3839)
* fix(v2): remove unnecessary backtick in output The escaped backtick seems to be present for no clear reason. As a matter of fact, it seems to be cluttering the output. So, remove the unnecessary backtick in the output. * update snapshot Co-authored-by: slorber <lorber.sebastien@gmail.com>
This commit is contained in:
parent
764d1fd191
commit
cf5644d67a
2 changed files with 2 additions and 2 deletions
|
@ -574,7 +574,7 @@ Array [
|
|||
exports[`site with wrong sidebar file 1`] = `
|
||||
"Bad sidebars file.
|
||||
These sidebar document ids do not exist:
|
||||
- goku\`,
|
||||
- goku,
|
||||
|
||||
Available document ids=
|
||||
- foo/bar
|
||||
|
|
|
@ -319,7 +319,7 @@ export function createSidebarsUtils(
|
|||
throw new Error(
|
||||
`Bad sidebars file.
|
||||
These sidebar document ids do not exist:
|
||||
- ${invalidSidebarDocIds.sort().join('\n- ')}\`,
|
||||
- ${invalidSidebarDocIds.sort().join('\n- ')},
|
||||
|
||||
Available document ids=
|
||||
- ${validDocIds.sort().join('\n- ')}`,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue