Skip to content

Commit 12a7f65

Browse files
committed
use "sanitized answer" instead of raw answer because qb reader is weird
1 parent fb09231 commit 12a7f65

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/react-components/QBReaderMainComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export const QBReaderMainComponent = (props: {settings:QBReaderSettings, view:QB
9696
], (data) => {
9797
const questionContent:Tossup[] = data.tossups.questionArray.map((e:any):Tossup => {
9898
return {
99-
question: e.question,
99+
question: e.question_sanitized,
100100
answer: e.answer_sanitized,
101101
rawAnswer: e.answer,
102102
category: e.category,

0 commit comments

Comments
 (0)