From b8a156da22cff32f85197f9c220b7b8e0b4edc8b Mon Sep 17 00:00:00 2001 From: Sainan Date: Thu, 17 Oct 2024 21:58:35 +0200 Subject: [PATCH] add return type hint --- src/services/shipCustomizationsService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);