diff --git a/apps/dashboard-app/app/(dashboard)/content-creation/page.tsx b/apps/dashboard-app/app/(dashboard)/content-creation/page.tsx index 92c0235..2afdfb5 100644 --- a/apps/dashboard-app/app/(dashboard)/content-creation/page.tsx +++ b/apps/dashboard-app/app/(dashboard)/content-creation/page.tsx @@ -22,7 +22,7 @@ const ContentCreationPage = () => { if (tablesInDatabase && tablesInDatabase[database]) { setTables(tablesInDatabase[database]) } - }, [tablesInDatabase,database]) + }, [database]) if (isMobile){ return ( diff --git a/apps/dashboard-app/app/(dashboard)/decision-making/page.tsx b/apps/dashboard-app/app/(dashboard)/decision-making/page.tsx index 8fd9f3e..47459f7 100644 --- a/apps/dashboard-app/app/(dashboard)/decision-making/page.tsx +++ b/apps/dashboard-app/app/(dashboard)/decision-making/page.tsx @@ -22,7 +22,7 @@ const DecisionMakingPage = () => { if (tablesInDatabase && tablesInDatabase[database]) { setTables(tablesInDatabase[database]) } - }, [tablesInDatabase,database]) + }, [database]) if (isMobile){ return ( diff --git a/apps/dashboard-app/app/(dashboard)/emotional-mental/page.tsx b/apps/dashboard-app/app/(dashboard)/emotional-mental/page.tsx index 9a32469..557c37d 100644 --- a/apps/dashboard-app/app/(dashboard)/emotional-mental/page.tsx +++ b/apps/dashboard-app/app/(dashboard)/emotional-mental/page.tsx @@ -22,7 +22,7 @@ const EmotionalMentalPage = () => { if (tablesInDatabase && tablesInDatabase[database]) { setTables(tablesInDatabase[database]) } - }, [tablesInDatabase,database]) + }, [database]) if (isMobile){ return ( diff --git a/apps/dashboard-app/app/(dashboard)/gamification/page.tsx b/apps/dashboard-app/app/(dashboard)/gamification/page.tsx index 5bc283a..ea0f4c2 100644 --- a/apps/dashboard-app/app/(dashboard)/gamification/page.tsx +++ b/apps/dashboard-app/app/(dashboard)/gamification/page.tsx @@ -22,7 +22,7 @@ const GamificationPage = () => { if (tablesInDatabase && tablesInDatabase[database]) { setTables(tablesInDatabase[database]) } - }, [tablesInDatabase,database]) + }, [database]) if (isMobile){ return ( diff --git a/apps/dashboard-app/app/(dashboard)/health-fitness/page.tsx b/apps/dashboard-app/app/(dashboard)/health-fitness/page.tsx index 92c3d47..c1d3d96 100644 --- a/apps/dashboard-app/app/(dashboard)/health-fitness/page.tsx +++ b/apps/dashboard-app/app/(dashboard)/health-fitness/page.tsx @@ -22,7 +22,7 @@ const HealthFitnessPage = () => { if (tablesInDatabase && tablesInDatabase[database]) { setTables(tablesInDatabase[database]) } - }, [tablesInDatabase,database]) + }, [database]) if (isMobile){ return ( diff --git a/apps/dashboard-app/app/(dashboard)/knowledge-skill-development/page.tsx b/apps/dashboard-app/app/(dashboard)/knowledge-skill-development/page.tsx index c12f423..b1a5737 100644 --- a/apps/dashboard-app/app/(dashboard)/knowledge-skill-development/page.tsx +++ b/apps/dashboard-app/app/(dashboard)/knowledge-skill-development/page.tsx @@ -60,7 +60,7 @@ const SkillTreePage = () => { if (tablesInDatabase && tablesInDatabase[database]) { setTables(tablesInDatabase[database]) } - }, [tablesInDatabase,database]) + }, [database]) const selectType = (type:any) =>{ setSelectedValue(type) diff --git a/apps/dashboard-app/app/(dashboard)/personal-finance/page.tsx b/apps/dashboard-app/app/(dashboard)/personal-finance/page.tsx index a93da2c..a11da85 100644 --- a/apps/dashboard-app/app/(dashboard)/personal-finance/page.tsx +++ b/apps/dashboard-app/app/(dashboard)/personal-finance/page.tsx @@ -22,7 +22,7 @@ const PersonalFinancePage = () => { if (tablesInDatabase && tablesInDatabase[database]) { setTables(tablesInDatabase[database]) } - }, [tablesInDatabase,database]) + }, [database]) if (isMobile){ return ( diff --git a/apps/dashboard-app/app/(dashboard)/personal-goals/page.tsx b/apps/dashboard-app/app/(dashboard)/personal-goals/page.tsx index 82ac5f9..d7f3746 100644 --- a/apps/dashboard-app/app/(dashboard)/personal-goals/page.tsx +++ b/apps/dashboard-app/app/(dashboard)/personal-goals/page.tsx @@ -22,7 +22,7 @@ const PersonalGoalsPage = () => { if (tablesInDatabase && tablesInDatabase[database]) { setTables(tablesInDatabase[database]) } - }, [tablesInDatabase,database]) + }, [database]) if (isMobile){ return ( diff --git a/apps/dashboard-app/app/(dashboard)/personal-productivity/page.tsx b/apps/dashboard-app/app/(dashboard)/personal-productivity/page.tsx index b6b41a4..0bb3cd3 100644 --- a/apps/dashboard-app/app/(dashboard)/personal-productivity/page.tsx +++ b/apps/dashboard-app/app/(dashboard)/personal-productivity/page.tsx @@ -22,7 +22,7 @@ const PersonalProductivityPage = () => { if (tablesInDatabase && tablesInDatabase[database]) { setTables(tablesInDatabase[database]) } - }, [tablesInDatabase,database]) + }, [database]) if (isMobile){ return ( diff --git a/apps/dashboard-app/app/(dashboard)/project-management/page.tsx b/apps/dashboard-app/app/(dashboard)/project-management/page.tsx index cfc915b..964a942 100644 --- a/apps/dashboard-app/app/(dashboard)/project-management/page.tsx +++ b/apps/dashboard-app/app/(dashboard)/project-management/page.tsx @@ -22,7 +22,7 @@ const ProjectsPage = () => { if (tablesInDatabase && tablesInDatabase[database]) { setTables(tablesInDatabase[database]) } - }, [tablesInDatabase,database]) + }, [database]) if (isMobile){ return ( diff --git a/apps/dashboard-app/app/(dashboard)/resource-management/page.tsx b/apps/dashboard-app/app/(dashboard)/resource-management/page.tsx index 72f1739..0c6488b 100644 --- a/apps/dashboard-app/app/(dashboard)/resource-management/page.tsx +++ b/apps/dashboard-app/app/(dashboard)/resource-management/page.tsx @@ -22,7 +22,7 @@ const ResourceManagementPage = () => { if (tablesInDatabase && tablesInDatabase[database]) { setTables(tablesInDatabase[database]) } - }, [tablesInDatabase,database]) + }, [database]) if (isMobile){ return ( diff --git a/apps/dashboard-app/app/(dashboard)/social-relationships/page.tsx b/apps/dashboard-app/app/(dashboard)/social-relationships/page.tsx index 320bde4..59579a9 100644 --- a/apps/dashboard-app/app/(dashboard)/social-relationships/page.tsx +++ b/apps/dashboard-app/app/(dashboard)/social-relationships/page.tsx @@ -22,7 +22,7 @@ const SocialRelationshipsPage = () => { if (tablesInDatabase && tablesInDatabase[database]) { setTables(tablesInDatabase[database]) } - }, [tablesInDatabase,database]) + }, [database]) if (isMobile){ return (