Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
Argeare5 committed Nov 27, 2024
1 parent 193bcf0 commit 46ac3f8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
File renamed without changes.
12 changes: 12 additions & 0 deletions src/app/proposal/page.exportPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { ProposalDetailsInitializer } from '../../components/ProposalsDetails/ProposalDetailsInitializer';
import { api } from '../../trpc/server';

export const revalidate = 3600 * 3;

export default async function Page() {
const [configs, count] = await Promise.all([
await api.configs.get(),
await api.configs.getProposalsCount(),
]);
return <ProposalDetailsInitializer configs={configs} count={Number(count)} />;
}

1 comment on commit 46ac3f8

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit was deployed on ipfs

Please sign in to comment.