diff options
author | 2025-08-08 23:31:21 +0100 | |
---|---|---|
committer | 2025-08-08 23:31:21 +0100 | |
commit | 8d656e056eb61b64c237ca8ece9482a6258e03f1 (patch) | |
tree | 655880609c2c9a08c857b3b5fac00123c9137c91 /src/components/Question.tsx | |
parent | Pass precheck data down tree for submission (diff) |
Eslint on new changes
Diffstat (limited to 'src/components/Question.tsx')
-rw-r--r-- | src/components/Question.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Question.tsx b/src/components/Question.tsx index 1c3a986..f39b117 100644 --- a/src/components/Question.tsx +++ b/src/components/Question.tsx @@ -295,7 +295,7 @@ class RenderedQuestion extends React.Component<QuestionProp> { let text; if (data && typeof(data) === "string") { - text = <ReactMarkdown>{data}</ReactMarkdown> + text = <ReactMarkdown>{data}</ReactMarkdown>; } else { text = ""; } |