Skip to content

Commit

Permalink
fixed relative link error
Browse files Browse the repository at this point in the history
  • Loading branch information
iskaktoltay committed Oct 15, 2024
1 parent 5d2585c commit aed9f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/packages/app/pages/export-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export default function ExportPage() {
.join('')
.replace(/[\/\\|]/g, '-') // Removes invalid characters: / \ |
.replace(/\s+/g, '') // Remove all whitespace for camel case
const path = './' + camelTitle + '/' + camelTitle + '.md'
const path = './' + camelTitle + '.md'
docMap.set(id, {name: title, path: path})
})
const documentsToExport = await Promise.all(
Expand Down

0 comments on commit aed9f00

Please sign in to comment.