Company logo
  • Jobs
  • Bootcamp
  • About Us
  • For professionals
    • Home
    • Jobs
    • Courses
    • Questions
    • Teachers
    • Bootcamp
  • For business
    • Home
    • Our process
    • Plans
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Calculator

0

107
Views
React: TypeError: Cannot read property 'getItem' of null

I'm created a simple React app and added a banner. But I'm getting a lot this error in Sentry from users.

Cannot read properties of null (reading 'getItem');

If someone knows what is a problem tell me please

setTimeout(() => {
  const banner = document.getElementById("banner");

  if (!window.localStorage?.getItem("seen")) {
    const button = document.getElementById("hide");

    if(button){
      button.addEventListener('click', () => {
      window.localStorage?.setItem("seen", 'true');
        banner.style.bottom = "-10vh";
        setTimeout(() => banner.remove(), 2000);
      });

      banner.style.removeProperty("visibility");
      setTimeout(() => banner.style.removeProperty("bottom"), 100);
    }
  } else banner?.remove();
}, 2000);
7 months ago · Juan Pablo Isaza
1 answers
Answer question

0

That is probably the key: value getItem is empty or undefined in local storage thus you are getting that error, goto local storage on the browser and check your key-value pair in local storage

7 months ago · Juan Pablo Isaza Report
Answer question
Find remote jobs