From 42001816770a8fe9d6ec2c97e91be197e153be45 Mon Sep 17 00:00:00 2001 From: Matt Love Date: Sat, 8 Feb 2020 10:09:47 -0700 Subject: [PATCH] fix invalid sidebar attributes --- docs/sidebars.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sidebars.js b/docs/sidebars.js index 47a91c2..7c235f2 100755 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -6,6 +6,6 @@ module.exports = { items: ["introduction", "getting-started", "configuration"] }, { type: "category", label: "Features", items: ["mdx"] }, - { type: "doc", label: "Supported Platforms", href: "/docs/platforms" } + { type: "doc", id: "/docs/platforms" } ] };