style: fix linting issues met ESLint

This commit is contained in:
Lint Action 2025-04-18 23:36:16 +00:00
parent 51a9b58a20
commit af8c783a26
4 changed files with 13 additions and 13 deletions

View file

@ -3,7 +3,7 @@ export const essayQuestionAdapter: GiftAdapter = {
installListener(questionElement: Element, answerUpdateCallback: (newAnswer: string | number | object) => void): void {
const textArea = questionElement.querySelector('textarea')!;
textArea.addEventListener('input', () => answerUpdateCallback(textArea.value));
textArea.addEventListener('input', () => { answerUpdateCallback(textArea.value); });
},
setAnswer(questionElement: Element, answer: string | number | object): void {