We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5236e5 commit 6b8d365Copy full SHA for 6b8d365
docusaurus.config.js
@@ -139,13 +139,13 @@ const config = {
139
breadcrumbs: false,
140
sidebarItemsGenerator: async function ({ defaultSidebarItemsGenerator, ...args }) {
141
const sidebarItems = await defaultSidebarItemsGenerator(args);
142
- const dymanicItems = await fetchAndGenerateDynamicSidebarItems(
+ const dynamicItems = await fetchAndGenerateDynamicSidebarItems(
143
MM_RPC_URL,
144
MM_REF_PATH,
145
NETWORK_NAMES.metamask
146
)
147
if (args.item.dirName === "reference/json-rpc-methods") {
148
- return [...sidebarItems, ...dymanicItems]
+ return [...sidebarItems, ...dynamicItems]
149
}
150
return sidebarItems;
151
0 commit comments