@mintlify/common 1.0.829 → 1.0.831

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,6 @@ export const prepareStringToBeValidFilename = (str) => str
8
8
  .replaceAll(/--/g, '-') // replace double hyphens
9
9
  .toLowerCase()
10
10
  : undefined;
11
- // returns a filename that is unique within the given array of pages
12
11
  export const generateUniqueFilenameWithoutExtension = (pages, base) => {
13
12
  let filename = base;
14
13
  if (pages.includes(filename)) {