Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Feb 22, 2024
1 parent cc11119 commit 6a44c5d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/app/theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { ThemeProvider } from 'next-themes';
import { useEffect } from 'react';
import { goerli, holesky, mainnet, sepolia } from 'viem/chains';
import { createConfig, http, WagmiProvider } from 'wagmi';
import { Config, createConfig, http, WagmiProvider } from 'wagmi';
import { injected, walletConnect } from 'wagmi/connectors';

const config = createConfig({
Expand Down Expand Up @@ -43,7 +43,7 @@ export const Theme = ({ children }) => {
(async () => {
const { setupConfig } = await import('@ens-tools/thorin-core');

setupConfig(config as any);
setupConfig(() => (config as Config));
})();
}, []);

Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"browserslist": "defaults, not ie <= 11",
"dependencies": {
"@ens-tools/format": "^0.0.2",
"@ens-tools/thorin-core": "0.0.3-5",
"@ens-tools/thorin-core": "0.0.3-7",
"@ensdomains/thorin": "^0.6.44",
"@headlessui/react": "^1.7.18",
"@mdx-js/loader": "^3.0.0",
Expand Down
8 changes: 4 additions & 4 deletions app/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions app/src/layout/PageLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ export const Layout: FC<{
'@context': 'https://schema.org',
'@type': 'Article',
headline: mdxProperties.meta.title,
description: mdxProperties.meta.description,
// keywords
// image: mdxProperties.meta.,
author: mdxProperties.meta.contributors?.map((author) => ({
'@type': 'Person',
Expand Down

0 comments on commit 6a44c5d

Please sign in to comment.