From 4ed5118f14f4243c6f7d256511b38f5b152447d2 Mon Sep 17 00:00:00 2001 From: John Whiles Date: Wed, 8 Jan 2025 13:11:18 +0000 Subject: [PATCH] chore: use window.ethereum --- src/components/AuthLogin/AuthModal.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/AuthLogin/AuthModal.tsx b/src/components/AuthLogin/AuthModal.tsx index a78c9a5ff9b..d1551bfa33c 100644 --- a/src/components/AuthLogin/AuthModal.tsx +++ b/src/components/AuthLogin/AuthModal.tsx @@ -189,7 +189,8 @@ const AuthModal = ({ console.log('before authenticateAndAuthorize') const { accessToken, userProfile } = await authenticateAndAuthorize( VERCEL_ENV as string, - customProvider, + // @ts-ignore + window.ethereum, ); console.log('accessToken', accessToken) console.log('userProfile', userProfile)