chore: update dependencies #166

Merged
Sainan merged 3 commits from update-deps into main 2024-05-06 06:22:40 -07:00
Showing only changes of commit fe1b4bf5df - Show all commits

View File

@ -94,8 +94,8 @@ export const blueprintNames = Object.fromEntries(
const buildables = items.filter(item => !!(item as Buildable).components);
export const getItemByBlueprint = (uniqueName: string): (MinItem & Buildable) | undefined => {
const item = buildables.find(
item => (item as Buildable).components?.find(component => component.uniqueName === uniqueName)
const item = buildables.find(item =>
(item as Buildable).components?.find(component => component.uniqueName === uniqueName)
);
return item;
};