diff --git a/src/components/Solutions/MatchSentences.tsx b/src/components/Solutions/MatchSentences.tsx
index cb3d77dc..a798efed 100644
--- a/src/components/Solutions/MatchSentences.tsx
+++ b/src/components/Solutions/MatchSentences.tsx
@@ -5,12 +5,21 @@ import {CommonProps} from ".";
import {errorButtonStyle, infoButtonStyle} from "@/constants/buttonStyles";
import {mdiArrowLeft, mdiArrowRight} from "@mdi/js";
import Icon from "@mdi/react";
+import {Fragment} from "react";
export default function MatchSentencesSolutions({options, prompt, sentences, userSolutions, onNext, onBack}: MatchSentencesExercise & CommonProps) {
return (
<>
-
{prompt}
+
+ {prompt.split("\\n").map((line, index) => (
+
+ {line}
+
+
+ ))}
+
+
{sentences.map(({sentence, id, color, solution}) => (
@@ -54,14 +63,14 @@ export default function MatchSentencesSolutions({options, prompt, sentences, use
-
+
-