Corrected some little bugs

This commit is contained in:
Tiago Ribeiro
2023-04-11 22:49:36 +01:00
parent 503a265da0
commit ca0584da2a
5 changed files with 10 additions and 7 deletions

View File

@@ -74,6 +74,7 @@ function Question({
key={option.id}
onClick={() => (onSelectOption ? onSelectOption(option.id) : null)}
className={clsx("flex border-2 p-4 rounded-xl gap-2 cursor-pointer bg-white", optionColor(option.id))}>
{showSolution && optionBadge(option.id)}
<span className="font-bold">{option.id}.</span>
<span>{option.text}</span>
</div>