+
+ Account Migration Not Available
+
+
+ We apologize, but migration is currently only available for
+ Unlock 1.0 accounts. Migration support for these account types
+ has now been discontinued.
+
+
)
}
return null
diff --git a/unlock-app/src/components/legacy-auth/SignInWithCode.tsx b/unlock-app/src/components/legacy-auth/SignInWithCode.tsx
deleted file mode 100644
index a0075a3c79a..00000000000
--- a/unlock-app/src/components/legacy-auth/SignInWithCode.tsx
+++ /dev/null
@@ -1,195 +0,0 @@
-import { useState } from 'react'
-import { locksmith } from '~/config/locksmith'
-import { useCaptcha } from '~/hooks/useCaptcha'
-import { EnterCode } from '../interface/connect/EnterCode'
-import { ToastHelper } from '../helpers/toast.helper'
-import {
- InitializeWaas,
- PrivateKeyFormat,
- RawPrivateKey,
- Waas,
-} from '@coinbase/waas-sdk-web'
-import { config } from '~/config/app'
-import { getUserWaasUuid } from '~/utils/getUserWaasUuid'
-import { UserAccountType } from '~/utils/userAccountType'
-import { Button } from '@unlock-protocol/ui'
-import { getSession } from 'next-auth/react'
-import ReCAPTCHA from 'react-google-recaptcha'
-
-// Singleton instance for WAAS
-let waasInstance: Waas | null = null
-
-/**
- * Initialize and return the WAAS instance.
- * Ensures that WAAS is initialized only once (Singleton Pattern).
- */
-const getWaasInstance = async (): Promise