fix: Update useEffect dependency in DataManager to include entityKey for accurate data fetching
Publish Fast Tabler Docker image / build-and-push-fast (push) Successful in 17m43s

This commit is contained in:
2025-07-09 23:03:06 +07:00
parent 0390dfd148
commit 2738455c1a
+1 -1
View File
@@ -39,7 +39,7 @@ function DataManager({ entityName, entityKey, placeholder }) {
useEffect(() => {
fetchItems();
}, []);
}, [entityKey]);
const fetchItems = async () => {
setLoading(true);