chore: adjust dashboard colection segments

This commit is contained in:
Elliot DeNolf
2024-02-20 16:25:51 -05:00
parent f10f62cebd
commit 1f674b5b86

View File

@@ -8,5 +8,5 @@ export default ({ params, searchParams }) =>
collectionSlug: params.collection, collectionSlug: params.collection,
searchParams, searchParams,
config, config,
route: `/${params.collection + '/' + params.segments?.join('/')}`, route: `/collections/${params.collection + (params.segments?.length ? `/${params.segments.join('/')}` : '')}`,
}) })