Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Commit

Permalink
Fix: Fix the linking of documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tunderwood committed Jan 12, 2021
1 parent fbb0990 commit b8c90f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "client",
"version": "1.0.0",
"version": "1.0.1",
"description": "The client lib for the Referee UX",
"author": "Justin Field <[email protected]>",
"homepage": "https://example.com/dashboard/",
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/services/DocsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default class DocsService {
if (docsStore.tableOfContents == null) {
try {
const response = await axios.get(`${process.env.PUBLIC_URL}/docs/table-of-contents.yaml`);
const tocData: any = yaml.safeLoad(response.data);
const tocData: any = yaml.load(response.data);
const validationResults = validateToc(tocData);

// TODO wire up error component rather than crash entire site.
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "server",
"version": "1.0.0",
"version": "1.0.1",
"description": "The backend for the Referee UI",
"author": "Justin Field <[email protected]>",
"homepage": "",
Expand Down

0 comments on commit b8c90f2

Please sign in to comment.