diff --git a/src/components/Login/ErrorCallout.tsx b/src/components/Login/ErrorCallout.tsx deleted file mode 100644 index b46c4fb1d..000000000 --- a/src/components/Login/ErrorCallout.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import Alert from '@app/components/Common/Alert'; -import { Transition } from '@headlessui/react'; -import React from 'react'; - -interface LoginErrorProps { - error: string; -} - -const LoginError: React.FC = ({ error }) => { - return ( - - {error} - - ); -}; - -export default LoginError;