From 0da9693de19cd22ec67896e5397cdddbf74fafd7 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sun, 8 Mar 2026 18:30:01 +0200 Subject: [PATCH] Remove a few unused --- app/components/icons/Key.tsx | 16 ---------------- app/components/icons/Search.tsx | 18 ------------------ app/components/icons/Users.tsx | 12 ------------ app/utils/urls.ts | 1 - 4 files changed, 47 deletions(-) delete mode 100644 app/components/icons/Key.tsx delete mode 100644 app/components/icons/Search.tsx delete mode 100644 app/components/icons/Users.tsx diff --git a/app/components/icons/Key.tsx b/app/components/icons/Key.tsx deleted file mode 100644 index 46070469f..000000000 --- a/app/components/icons/Key.tsx +++ /dev/null @@ -1,16 +0,0 @@ -export function KeyIcon({ className }: { className?: string }) { - return ( - - - - ); -} diff --git a/app/components/icons/Search.tsx b/app/components/icons/Search.tsx deleted file mode 100644 index 4b83a8d58..000000000 --- a/app/components/icons/Search.tsx +++ /dev/null @@ -1,18 +0,0 @@ -export function SearchIcon({ className }: { className?: string }) { - return ( - - - - ); -} diff --git a/app/components/icons/Users.tsx b/app/components/icons/Users.tsx deleted file mode 100644 index f2f2e7f39..000000000 --- a/app/components/icons/Users.tsx +++ /dev/null @@ -1,12 +0,0 @@ -export function UsersIcon({ className }: { className?: string }) { - return ( - - - - ); -} diff --git a/app/utils/urls.ts b/app/utils/urls.ts index ebde668c7..f0d1fb480 100644 --- a/app/utils/urls.ts +++ b/app/utils/urls.ts @@ -97,7 +97,6 @@ export const CALENDAR_PAGE = "/calendar"; export const CALENDAR_NEW_PAGE = "/calendar/new"; export const TOURNAMENT_NEW_PAGE = "/calendar/new?tournament=true"; export const ORGANIZATION_NEW_PAGE = "/org/new"; -export const CALENDAR_TOURNAMENTS_PAGE = "/calendar?tournaments=true"; export const STOP_IMPERSONATING_URL = "/auth/impersonate/stop"; export const SEED_URL = "/seed"; export const PLANNER_URL = "/plans";