Skip to content

Commit

Permalink
🐛 fix error on item
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-bierman committed May 8, 2024
1 parent 4fe2fea commit 8475f18
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion server/src/services/item/deleteItemService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import { ItemPacks } from '../../drizzle/methods/ItemPacks';
export const deleteItemService = async (itemId: string, packId?: string) => {
const itemClass = new Item();
const ItemPacksClass = new ItemPacks();
const itemClass = new Item();

await itemClass.delete(itemId);
await ItemPacksClass.delete(itemId, packId);
Expand Down

0 comments on commit 8475f18

Please sign in to comment.