diff --git a/src/helpers/inventoryHelpers.ts b/src/helpers/inventoryHelpers.ts index ca0d0e5c..7879c007 100644 --- a/src/helpers/inventoryHelpers.ts +++ b/src/helpers/inventoryHelpers.ts @@ -1,4 +1,4 @@ -import { IInventoryDatabase, IInventoryResponse } from "../types/inventoryTypes"; +import { IInventoryDatabase, IInventoryResponse } from "@/src/types/inventoryTypes"; const toInventoryResponse = (inventoryDatabase: IInventoryDatabase): IInventoryResponse => { // eslint-disable-next-line @typescript-eslint/no-unused-vars diff --git a/src/services/inventoryService.ts b/src/services/inventoryService.ts index 060aa5ff..36f49d06 100644 --- a/src/services/inventoryService.ts +++ b/src/services/inventoryService.ts @@ -1,4 +1,4 @@ -import { Inventory } from "../models/inventoryModel"; +import { Inventory } from "@/src/models/inventoryModel"; import new_inventory from "@/static/fixed_responses/postTutorialInventory.json"; import config from "@/config.json"; import { Types } from "mongoose";