1- import { CreateSpaceCard } from '@/components/CreateSpaceCard' ;
2- import { SpacesCard } from '@/components/SpacesCard' ;
3- import { Loading } from '@/components/ui/Loading' ;
4- import { usePrivateSpaces } from '@/hooks/use-private-spaces' ;
5- import { usePublicSpaces } from '@/hooks/use-public-spaces' ;
61import { Graph } from '@graphprotocol/grc-20' ;
72import { Connect , Identity , Key , type Messages , StoreConnect , Utils } from '@graphprotocol/hypergraph' ;
83import { useIdentityToken , usePrivy , useWallets } from '@privy-io/react-auth' ;
@@ -14,6 +9,11 @@ import { TriangleAlert } from 'lucide-react';
149import { useEffect , useState } from 'react' ;
1510import { createWalletClient , custom } from 'viem' ;
1611import { privateKeyToAccount } from 'viem/accounts' ;
12+ import { CreateSpaceCard } from '@/components/CreateSpaceCard' ;
13+ import { SpacesCard } from '@/components/SpacesCard' ;
14+ import { Loading } from '@/components/ui/Loading' ;
15+ import { usePrivateSpaces } from '@/hooks/use-private-spaces' ;
16+ import { usePublicSpaces } from '@/hooks/use-public-spaces' ;
1717
1818const CHAIN = import . meta. env . VITE_HYPERGRAPH_CHAIN === 'geogenesis' ? Connect . GEOGENESIS : Connect . GEO_TESTNET ;
1919const API_URL =
@@ -327,7 +327,7 @@ function AuthenticateComponent() {
327327
328328 try {
329329 const privyProvider = await embeddedWallet . getEthereumProvider ( ) ;
330- const walletClient = createWalletClient ( {
330+ const _walletClient = createWalletClient ( {
331331 account : embeddedWallet . address as `0x${string } `,
332332 chain : CHAIN ,
333333 transport : custom ( privyProvider ) ,
0 commit comments