Skip to content

Commit

Permalink
chore: move web3 sign in to homepage hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
mpblocky committed Mar 6, 2025
1 parent 2c7080e commit f20f6b4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import { Link } from 'react-router-dom';
import Snackbar from '@mui/material/Snackbar';
import { Button } from '@/shared/components/ui/button';
import { useWalletConnect } from '@/shared/contexts/wallet-connect';
import { useWeb3SignIn } from '@/modules/operator/hooks/use-web3-signin';
import { useWeb3Auth } from '@/modules/auth-web3/hooks/use-web3-auth';
import { routerPaths } from '@/router/router-paths';
import { getErrorMessageForError } from '@/shared/errors';
import { PrepareSignatureType } from '@/api/hooks/use-prepare-signature';
import { useWeb3SignIn } from '../hooks';

export function OperatorSignIn() {
const { isConnected, openModal, address } = useWalletConnect();
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './use-web3-signin';

0 comments on commit f20f6b4

Please sign in to comment.