Skip to content

Commit

Permalink
Style Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Revocable8579 committed Sep 5, 2024
1 parent 20449f1 commit 705b250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/quiz.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const QuestionExplanation = <p class="questionExplanation">{'Question Explanatio
const Question = ({ id, question, answers, quizType, explanations }: QuizQuestion) => {
const [selectedAnswer, setSelectedAnswer] = createSignal<number | null>(null)
const [isAnswerCorrect, setIsAnswerCorrect] = createSignal(false)
const [explanation, setExplanation] = createSignal<string | "">("")
const [explanation, setExplanation] = createSignal<string | ''>('')
const [explanationIdx, setExplanationIdx] = createSignal<number | null>(null)

const [submitted, setSubmitted] = createSignal(false)
Expand Down

0 comments on commit 705b250

Please sign in to comment.