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.
1 parent 58e51a0 commit 705f030Copy full SHA for 705f030
1 file changed
src/components/NewsSliderDataWrapper.astro
@@ -16,7 +16,7 @@ const localNews = (
16
.map((item) => ({
17
...item.data,
18
id: item.id,
19
- target: baseUrl + "/" + localeFromUrl + "/" + item.data.target,
+ target: item.data.target,
20
}))
21
.sort((a, b) => (b?.order || 0) - (a?.order || 0));
22
---
0 commit comments