Skip to content

Commit

Permalink
Lint : Use singlequote
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit-Welsch committed Dec 11, 2023
1 parent 397d8d6 commit 9376e89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/helper/question.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class Question {
correct:
sheet[column.correct + currentRow] &&
sheet[column.correct + currentRow].h &&
(sheet[column.correct + currentRow].h.toLowerCase().trim() === "x"),
(sheet[column.correct + currentRow].h.toLowerCase().trim() === 'x'),
});
}
currentRow++;
Expand Down

0 comments on commit 9376e89

Please sign in to comment.