Skip to content

Commit

Permalink
minor fix -- forgot to add missing function call in view full table grid
Browse files Browse the repository at this point in the history
  • Loading branch information
siddheshraze committed Oct 18, 2024
1 parent 6d4e6f5 commit 87dcf99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default function ViewFullTableDataGrid() {
}

useEffect(() => {
reloadVFT().catch(console.error);
reloadVFT().catch(console.error).then(setLoading(false));
}, []);

return (
Expand Down

0 comments on commit 87dcf99

Please sign in to comment.