Skip to content

Commit

Permalink
pre render faucet and transaction
Browse files Browse the repository at this point in the history
  • Loading branch information
KorbinianK committed May 2, 2024
1 parent 7b0b68f commit e3d6705
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/bridge-ui/src/routes/faucet/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<script lang="ts">
import { Faucet } from '$components/Faucet';
import { Page } from '$components/Page';
export const prerender = true;
</script>

<svelte:head>
Expand Down
4 changes: 3 additions & 1 deletion packages/bridge-ui/src/routes/transactions/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<script>
import { Page } from '$components/Page';
import { Transactions } from '$components/Transactions';
export const prerender = true;
</script>

<svelte:head>
<title>Taiko Bridge | Activities</title>
<title>Taiko Bridge | Transactions</title>
</svelte:head>
<Page>
<Transactions />
Expand Down

0 comments on commit e3d6705

Please sign in to comment.