Skip to content

Commit

Permalink
chore: fix dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
duyet committed Nov 21, 2023
1 parent a56a725 commit 05fdd05
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ export const metadata: Metadata = {
description: 'Simple UI for ClickHouse Monitoring',
}

export const dynamic = 'force-dynamic'

export default function RootLayout({
children,
}: {
Expand Down
2 changes: 1 addition & 1 deletion app/tables/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs'
import { DataTable } from '@/components/data-table/data-table'

export const dynamic = 'force-dynamic'
export const revalidate = 5
export const revalidate = 0

const config: QueryConfig = {
name: 'tables',
Expand Down

0 comments on commit 05fdd05

Please sign in to comment.