diff --git a/src/services/shipCustomizationsService.ts b/src/services/shipCustomizationsService.ts index 4337bb68..170a69f0 100644 --- a/src/services/shipCustomizationsService.ts +++ b/src/services/shipCustomizationsService.ts @@ -133,7 +133,7 @@ export const handleSetShipDecorations = async ( return { DecoId: decoId.toString(), Room: placedDecoration.Room, IsApartment: placedDecoration.IsApartment }; }; -export const handleSetPlacedDecoInfo = async (accountId: string, req: ISetPlacedDecoInfoRequest) => { +export const handleSetPlacedDecoInfo = async (accountId: string, req: ISetPlacedDecoInfoRequest): Promise => { const personalRooms = await getPersonalRooms(accountId); const room = personalRooms.Ship.Rooms.find(room => room.Name === req.Room);