Skip to content

Commit

Permalink
Merge pull request #33 from anoopkarnik/main
Browse files Browse the repository at this point in the history
Removed ESLints bugs
  • Loading branch information
anoopkarnik authored Oct 25, 2024
2 parents c2716b3 + 59b4a64 commit 1b079f1
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const ContentCreationPage = () => {
if (tablesInDatabase && tablesInDatabase[database]) {
setTables(tablesInDatabase[database])
}
}, [tablesInDatabase,database])
}, [database])

if (isMobile){
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const DecisionMakingPage = () => {
if (tablesInDatabase && tablesInDatabase[database]) {
setTables(tablesInDatabase[database])
}
}, [tablesInDatabase,database])
}, [database])

if (isMobile){
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const EmotionalMentalPage = () => {
if (tablesInDatabase && tablesInDatabase[database]) {
setTables(tablesInDatabase[database])
}
}, [tablesInDatabase,database])
}, [database])

if (isMobile){
return (
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard-app/app/(dashboard)/gamification/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const GamificationPage = () => {
if (tablesInDatabase && tablesInDatabase[database]) {
setTables(tablesInDatabase[database])
}
}, [tablesInDatabase,database])
}, [database])

if (isMobile){
return (
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard-app/app/(dashboard)/health-fitness/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const HealthFitnessPage = () => {
if (tablesInDatabase && tablesInDatabase[database]) {
setTables(tablesInDatabase[database])
}
}, [tablesInDatabase,database])
}, [database])

if (isMobile){
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const SkillTreePage = () => {
if (tablesInDatabase && tablesInDatabase[database]) {
setTables(tablesInDatabase[database])
}
}, [tablesInDatabase,database])
}, [database])

const selectType = (type:any) =>{
setSelectedValue(type)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const PersonalFinancePage = () => {
if (tablesInDatabase && tablesInDatabase[database]) {
setTables(tablesInDatabase[database])
}
}, [tablesInDatabase,database])
}, [database])

if (isMobile){
return (
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard-app/app/(dashboard)/personal-goals/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const PersonalGoalsPage = () => {
if (tablesInDatabase && tablesInDatabase[database]) {
setTables(tablesInDatabase[database])
}
}, [tablesInDatabase,database])
}, [database])

if (isMobile){
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const PersonalProductivityPage = () => {
if (tablesInDatabase && tablesInDatabase[database]) {
setTables(tablesInDatabase[database])
}
}, [tablesInDatabase,database])
}, [database])

if (isMobile){
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const ProjectsPage = () => {
if (tablesInDatabase && tablesInDatabase[database]) {
setTables(tablesInDatabase[database])
}
}, [tablesInDatabase,database])
}, [database])

if (isMobile){
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const ResourceManagementPage = () => {
if (tablesInDatabase && tablesInDatabase[database]) {
setTables(tablesInDatabase[database])
}
}, [tablesInDatabase,database])
}, [database])

if (isMobile){
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const SocialRelationshipsPage = () => {
if (tablesInDatabase && tablesInDatabase[database]) {
setTables(tablesInDatabase[database])
}
}, [tablesInDatabase,database])
}, [database])

if (isMobile){
return (
Expand Down

0 comments on commit 1b079f1

Please sign in to comment.