From b12287f563fc27b04f7ccc108e204764f322e80e Mon Sep 17 00:00:00 2001 From: Chris George Date: Sat, 17 Aug 2024 01:32:18 -0400 Subject: [PATCH] Got rid of sort able fully --- src/types/sort.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/types/sort.ts b/src/types/sort.ts index f312a93e..49dcb027 100644 --- a/src/types/sort.ts +++ b/src/types/sort.ts @@ -1,5 +1,3 @@ -import { TranslatedCharacterInfo as Character } from "../consts/character-info"; - export const allSortOrders = ["ascending", "descending"] as const; export type SortOrder = typeof allSortOrders[number]; export const allCharacterSortCriteria = ["name", "rarity"] as const;