Relative Content

Tag Archive for reactjs

Why i get “Maximum update” error when trying to filter data?

I’m trying to filter data from api. In fact it’s working but i see error:
“FilterCheckboxGroup.js:54 Warning: Maximum update depth exceeded. This can happen when a component calls setState inside useEffect, but useEffect either doesn’t have a dependency array, or one of the dependencies changes on every render. Error Component Stack”

Why i get “Maximum update” error when trying to filter data?

I’m trying to filter data from api. In fact it’s working but i see error:
“FilterCheckboxGroup.js:54 Warning: Maximum update depth exceeded. This can happen when a component calls setState inside useEffect, but useEffect either doesn’t have a dependency array, or one of the dependencies changes on every render. Error Component Stack”

Any technique for preheating Iframe component (React)

In my scenario, I am working with two web pages page1 and page2. On page2, there is a component called that render iframe, and this process can take some time to complete. To improve the overall user experience, I aim to prefetch, preheat or prerender this component while the user is still on page1. So that when the user navigate to page2, the is ready. It would be great if anyone could share any technique in order to achieve this.

npm error while creating React app using npx create-react-app [duplicate]

This question already has answers here: What does npm install –legacy-peer-deps do exactly? When is it recommended / What’s a potential use case? (8 answers) Closed 2 days ago. [enter image descriptionenter image description here here](https://i.sstatic.net/AJmLnAr8.png) Hey ! I am learning react, I was creating react folder from CMD (npx create-react-app firstreactapp). It gives an […]

Change date interval in aldabil’s react-scheduler

I’m using aldabil’s react-scheduler component for my app. I need to change the date interval shown in the month view. What I want to achieve is to show in the view 1 week before my current date and 30 days in advance. In this example, the 09 – 15 week should be top row and the last should be the week of Jan 6 to Jan 12.

Why usecallback is triggered but the dependencies are not updated?

I have a dependencies windowSize. I also have a search input field where I update the search state. if I tip something in my search state my sites get rerendert of course because I update a state. But I have a function wrapped in useCallback but the problem is, it get triggered. So why it gets triggered ? it should only triggered when the dependencie/state windowSize gets changed.