diff --git a/src/components/Questions/QuestionCard.tsx b/src/components/Questions/QuestionCard.tsx
index d42ab3120..ef1b8f141 100644
--- a/src/components/Questions/QuestionCard.tsx
+++ b/src/components/Questions/QuestionCard.tsx
@@ -94,7 +94,7 @@ export function QuestionCard(props: QuestionCardProps) {
>
{!question.isLongAnswer && (
p]:leading-snug sm:text-xl`}
dangerouslySetInnerHTML={{
__html: markdownToHtml(question.answer, false),
}}
diff --git a/src/data/question-groups/react/content/pure-components.md b/src/data/question-groups/react/content/pure-components.md
index ea409abae..87ee12c6a 100644
--- a/src/data/question-groups/react/content/pure-components.md
+++ b/src/data/question-groups/react/content/pure-components.md
@@ -2,7 +2,7 @@ Pure components re-render only when the props passed to the component changes. F
To create a pure component, you can use the `memo` function from React. It is a higher order component which takes a component as an argument and returns a new component. The new component renders only if the props change.
-```jsx
+```javascript
import React, { memo } from 'react';
const ChildComponent = ({ name }) => {
diff --git a/src/data/question-groups/react/content/synthetic-events.md b/src/data/question-groups/react/content/synthetic-events.md
index 807284df5..946393fef 100644
--- a/src/data/question-groups/react/content/synthetic-events.md
+++ b/src/data/question-groups/react/content/synthetic-events.md
@@ -2,7 +2,7 @@ React differs from HTML in that it uses a synthetic event system instead of dire
The events such as `onClick`, `onSubmit`, `onFocus`, etc. are all camel-cased to be consistent with the naming convention in JavaScript. React event handlers are written inside curly braces:
-```jsx
+```javascript
function activateLasers(e) {
e.preventDefault();
console.log('The button was clicked.');
diff --git a/src/pages/questions/[questionGroupId].astro b/src/pages/questions/[questionGroupId].astro
index db537cf85..81f285917 100644
--- a/src/pages/questions/[questionGroupId].astro
+++ b/src/pages/questions/[questionGroupId].astro
@@ -38,7 +38,7 @@ const { frontmatter } = questionGroup;
noIndex={true}
>