SysSn13/leetcode-rating-predictor

Clicking on FAQ does not expand it

SysSn13 opened this issue · 1 comments

Clicking on FAQ does not expand it

Error in console

(index):4766 Uncaught TypeError: Cannot read properties of undefined (reading 'trim')
at localizeDate ((index):4766:43)

image

image

When I run the other function manually in console, the accordions work

image

The typeError we get is due to fact that there is no .data property and so .trim() fails

Fixed by changing .data to .textContent

Screenshot After fix

image