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.
2 parents b9b48f6 + ef3b1a4 commit 93ffdb0Copy full SHA for 93ffdb0
src/utils/generateKBSidebar.js
@@ -79,6 +79,10 @@ function cleanSlug(filename, productName) {
79
}
80
81
function generateKBSidebar(productName) {
82
+ // DIAGNOSTIC TEST: Return empty array to test if this function causes broken KB links
83
+ // TODO: Remove this return statement after diagnostic test
84
+ return [];
85
+
86
// Find the project root by looking for package.json
87
let currentDir = __dirname;
88
while (!fs.existsSync(path.join(currentDir, 'package.json')) && currentDir !== '/') {
0 commit comments