1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

Fix: Codeclimate issue and minor improvement

This commit is contained in:
Akshay 2021-06-23 11:03:40 +02:00
parent d0b167f24d
commit 2c6d54bef0

View File

@ -68,7 +68,7 @@ export default function MarkdownList({ data, location, pageContext }) {
keys.forEach((element) => {
children.push(
<ul className={sidebarStyles.list}>
<ul >
{sidebarList(element, nestedModules[element])}
</ul>
)
@ -76,7 +76,7 @@ export default function MarkdownList({ data, location, pageContext }) {
return children
}
const nestedSidebarList = sidebarList(null, nestedModules)
const nestedSidebarList = sidebarList("", nestedModules)
return (
<>