1+ import { Button } from '@/components/ui/button' ;
2+ import { Card , CardContent , CardDescription , CardHeader , CardTitle } from '@/components/ui/card' ;
3+ import { Input } from '@/components/ui/input' ;
14import { store } from '@graphprotocol/hypergraph' ;
25import {
36 useHypergraphApp ,
@@ -8,9 +11,6 @@ import {
811import { createFileRoute , Link } from '@tanstack/react-router' ;
912import { useSelector } from '@xstate/store/react' ;
1013import { useEffect , useState } from 'react' ;
11- import { Button } from '@/components/ui/button' ;
12- import { Card , CardContent , CardDescription , CardHeader , CardTitle } from '@/components/ui/card' ;
13- import { Input } from '@/components/ui/input' ;
1414
1515export const Route = createFileRoute ( '/' ) ( {
1616 component : Index ,
@@ -25,7 +25,6 @@ function Index() {
2525 const [ spaceName , setSpaceName ] = useState ( '' ) ;
2626 const { createPrivateSpace, isLoading : isCreatingPrivateSpace } = usePrivyAuthCreatePrivateSpace ( ) ;
2727 const { createPublicSpace, isLoading : isCreatingPublicSpace } = usePrivyAuthCreatePublicSpace ( ) ;
28- console . log ( { isCreatingPrivateSpace, isCreatingPublicSpace } ) ;
2928
3029 const accountInboxes = useSelector ( store , ( state ) => state . context . accountInboxes ) ;
3130 const { listInvitations, invitations, acceptInvitation, createAccountInbox, getOwnAccountInboxes, isConnecting } =
0 commit comments