diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index 4e100c13..c236be3b 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -1,5 +1,4 @@ import { WorldState } from "@/src/models/worldStateModel"; -import buildConfig from "@/static/data/buildConfig.json"; export const createWorldState = async () => { const worldState = new WorldState(); diff --git a/src/types/worldStateTypes.ts b/src/types/worldStateTypes.ts index 36f12d13..c8d6b8ac 100644 --- a/src/types/worldStateTypes.ts +++ b/src/types/worldStateTypes.ts @@ -111,7 +111,7 @@ export interface ISortie extends Omit { export interface ILiteSortie extends IBaseWorldStateObject { Reward: string; Seed: number; - Boss: String; + Boss: string; Missions: ISortieMission[]; }