Skip to content

Commit

Permalink
Merge pull request #105 from imperial/fix-force-dynamic
Browse files Browse the repository at this point in the history
fix: force dynamic on appropriate pages
  • Loading branch information
alexanderbira authored Sep 5, 2024
2 parents 8321ac8 + a296245 commit a645626
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/companies/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ const OpportunitiesPage = async () => {
)
}

export const dynamic = "force-dynamic"
export default OpportunitiesPage
1 change: 1 addition & 0 deletions app/events/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ const EventsPage = async () => {
)
}

export const dynamic = "force-dynamic"
export default EventsPage
1 change: 1 addition & 0 deletions app/opportunities/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ const OpportunitiesPage = async () => {
)
}

export const dynamic = "force-dynamic"
export default OpportunitiesPage
1 change: 0 additions & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,5 +143,4 @@ const Home = async () => {
)
}

export const dynamic = "force-dynamic"
export default Home
1 change: 1 addition & 0 deletions app/students/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ const StudentsPage = async () => {
)
}

export const dynamic = "force-dynamic"
export default StudentsPage

0 comments on commit a645626

Please sign in to comment.