Skip to content

Commit

Permalink
add loader for org reports
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikvirendrar committed Jul 31, 2024
1 parent a5c1c9e commit 933557e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/containers/Organization/OrganizationReport.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ const OrganizationReport = () => {
const SearchProject = useSelector((state) => state.searchList.data);

const handleChangeReportsLevel = (event) => {
setTableData([]);
setReportsLevel(event.target.value);
setlanguageLevelStats("");
setOffset(0);
Expand Down Expand Up @@ -224,7 +225,7 @@ const OrganizationReport = () => {
createReportColumns(rawData);

// eslint-disable-next-line
}, [reportData, languageLevelsStats, reportsLevel]);
}, [reportData, languageLevelsStats]);

const createReportColumns = (rawData) => {
let tempColumns = [];
Expand Down

0 comments on commit 933557e

Please sign in to comment.