this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ› Don't decodeURI() when getting tags or techs

+2 -5
+1 -1
src/pages/tags/[tag].astro
··· 10 10 return tags.map((t) => ({ params: { tag: t.id } })); 11 11 }) satisfies GetStaticPaths; 12 12 13 - const entry = await getEntry("tags", decodeURI(Astro.params.tag!.toString())); 13 + const entry = await getEntry("tags", Astro.params.tag!.toString()); 14 14 if (!entry) return Astro.rewrite("/404"); 15 15 16 16 const {
+1 -4
src/pages/using/[tech].astro
··· 10 10 ); 11 11 }) satisfies GetStaticPaths; 12 12 13 - const tech = await getEntry( 14 - "technologies", 15 - decodeURI(Astro.params.tech!.toString()), 16 - ); 13 + const tech = await getEntry("technologies", Astro.params.tech!.toString()); 17 14 if (!tech) return Astro.rewrite("/404"); 18 15 19 16 const works = await getCollection("works").then((works) =>