I tried this fix but just didn’t show anything, help appreciated, thanks!
TypeError: mockInterviewQuestion.map is not a function
function QuestionsSection({ mockInterviewQuestion = [], activeQuestionIndex }) {
if (!Array.isArray(mockInterviewQuestion)) {
console.error('mockInterviewQuestion is not an array', mockInterviewQuestion);
return null;
}
return (
New contributor
Fysense is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.