We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d995c9 commit 9844c13Copy full SHA for 9844c13
1 file changed
lambdas/api-handler/src/handlers/get-mi.ts
@@ -10,8 +10,7 @@ import { assertNotEmpty } from "../utils/validation";
10
import { extractCommonIds } from "../utils/common-ids";
11
import { Deps } from "../config/deps";
12
13
-export default function createGetMIHandler(
14
- deps: Deps,
+export default function createGetMIHandler(deps: Deps
15
): APIGatewayProxyHandler {
16
return async (event) => {
17
const commonIds = extractCommonIds(
@@ -37,11 +36,7 @@ export default function createGetMIHandler(
37
36
),
38
);
39
40
- const result = await getMIOperation(
41
- miId,
42
- supplierId,
43
- deps.miRepo,
44
- );
+ const result = await getMIOperation(miId, supplierId, deps.miRepo);
45
46
deps.logger.info({
47
description: "Retrieved management information",
0 commit comments