Skip to content

Commit

Permalink
disable data caching for /transactions and /blocks routes
Browse files Browse the repository at this point in the history
  • Loading branch information
ejmg committed Feb 16, 2024
1 parent a56958f commit fb2b078
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app/blocks/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import BlocksTable from "@/components/BlocksTable";

export const dynamic = "force-dynamic";

const Page = () => {

return (
Expand Down
2 changes: 2 additions & 0 deletions src/app/transactions/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import TransactionsTable from "@/components/TransactionsTable";

export const dynamic = "force-dynamic";

const Page = async () => {
return (
<div className="flex flex-col gap-5">
Expand Down

0 comments on commit fb2b078

Please sign in to comment.