From d2c04d58f29a8469d286566b463a522a86fd871c Mon Sep 17 00:00:00 2001 From: itsfinniii <102350242+itsfinniii@users.noreply.github.com> Date: Wed, 25 Mar 2026 22:15:27 +0100 Subject: [PATCH] Set content of review to the HTML converted markdown --- astro/src/components/web/Reviews.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astro/src/components/web/Reviews.astro b/astro/src/components/web/Reviews.astro index 1aed516..8a722b8 100644 --- a/astro/src/components/web/Reviews.astro +++ b/astro/src/components/web/Reviews.astro @@ -1,4 +1,5 @@ --- +import { markdownToHtml } from '@/lib/markdown'; import StarRating from './subcomponents/StarRating.astro'; interface Props { @@ -41,8 +42,7 @@ const reviewsToShow = reviews.reviews.slice(0, 5); -