remove unused stuff

This commit is contained in:
Sainan 2024-06-17 14:10:30 +02:00
parent 9a0e4e42d7
commit b3c849e591

View File

@ -1,6 +1,6 @@
import { getIndexAfter } from "@/src/helpers/stringHelpers";
import { logger } from "@/src/utils/logger";
import Items, { Buildable, Category, MinimalItem, Warframe, Weapon } from "warframe-items";
import Items, { Category, MinimalItem, Warframe, Weapon } from "warframe-items";
import badItems from "@/static/json/exclude-mods.json";
import {
dict_en,
@ -107,8 +107,6 @@ export const blueprintNames = Object.fromEntries(
.map(name => [name, craftNames[name]])
);
const buildables = items.filter(item => !!(item as Buildable).components);
// Gets a recipe by its uniqueName
export const getItemByBlueprint = (uniqueName: string): IRecipe | undefined => {
return ExportRecipes[uniqueName];