0👍
✅
You have to delete the following lines:
this.setIntervalId = setInterval(() => {
this.getUsers();
}, 1000);
Is there a reason you are invoking setInterval every second?
Every time you invoke that function, data are retrieved and the grid is refreshed.
Source:stackexchange.com