From cfbf7edf7e40334139fdbbf60f30596dfef71297 Mon Sep 17 00:00:00 2001 From: Puranjay Savar Mattas Date: Fri, 1 Aug 2025 10:41:45 +0000 Subject: [PATCH] chore(login): remove unused ErrorCallout component Deletes the ErrorCallout.tsx file as it is not used anywhere in the codebase. This cleans up dead code from the project. Addresses https://github.com/fallenbagel/jellyseerr/pull/1505#discussion_r2195045066 --- src/components/Login/ErrorCallout.tsx | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/components/Login/ErrorCallout.tsx 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;