diff --git a/examples/bottom-chat/pages/index.tsx b/examples/bottom-chat/pages/index.tsx index 8dd832b7..595067a3 100644 --- a/examples/bottom-chat/pages/index.tsx +++ b/examples/bottom-chat/pages/index.tsx @@ -23,6 +23,7 @@ import { Wallet as WalletButton } from '../components/Wallet'; import { DialectDappsIdentityResolver } from '@dialectlabs/identity-dialect-dapps'; import { SNSIdentityResolver } from '@dialectlabs/identity-sns'; import { CardinalTwitterIdentityResolver } from '@dialectlabs/identity-cardinal'; +import { CivicIdentityResolver } from '@dialectlabs/identity-civic'; const walletToDialectWallet = ( wallet: WalletContextState @@ -175,6 +176,7 @@ export default function Home(): JSX.Element { new DialectDappsIdentityResolver(), new SNSIdentityResolver(connection), new CardinalTwitterIdentityResolver(connection), + new CivicIdentityResolver(connection), ], }, }), diff --git a/examples/chat/pages/index.tsx b/examples/chat/pages/index.tsx index 41f2aa20..51ea58bc 100644 --- a/examples/chat/pages/index.tsx +++ b/examples/chat/pages/index.tsx @@ -23,6 +23,7 @@ import { } from '@solana/wallet-adapter-react'; import Head from 'next/head'; import { Wallet as WalletButton } from '../components/Wallet'; +import { CivicIdentityResolver } from '@dialectlabs/identity-civic'; // TODO: Use useTheme instead of explicitly importing defaultVariables export const themeVariables: IncomingThemeVariables = { @@ -155,6 +156,7 @@ export default function Home(): JSX.Element { new DialectDappsIdentityResolver(), new SNSIdentityResolver(connection), new CardinalTwitterIdentityResolver(connection), + new CivicIdentityResolver(connection), ], }, }),