diff --git a/.changeset/brown-avocados-peel.md b/.changeset/brown-avocados-peel.md new file mode 100644 index 00000000..5ec6dd07 --- /dev/null +++ b/.changeset/brown-avocados-peel.md @@ -0,0 +1,5 @@ +--- +"@eventcatalog/core": patch +--- + +fix(core): added missing urls for slash support diff --git a/src/components/Lists/VersionList.astro b/src/components/Lists/VersionList.astro index 6eb5d960..b07daa6b 100644 --- a/src/components/Lists/VersionList.astro +++ b/src/components/Lists/VersionList.astro @@ -1,5 +1,6 @@ --- import type { CollectionTypes } from '@types'; +import { buildUrl } from '@utils/url-builder'; import type { CollectionEntry } from 'astro:content'; interface Props { @@ -17,7 +18,7 @@ const currentPath = Astro.url.pathname;