Skip to content

Commit 4f1fcb5

Browse files
committed
chore(zoe): Remove irrelevant JSDoc type override
1 parent c1d4a60 commit 4f1fcb5

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/zoe/src/contractSupport/durability.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,7 @@ export const provideAll = (baggage, thunks) => {
8484
// assume if any keys are defined they all are
8585
const inBaggage = baggage.has(keys[0]);
8686
if (inBaggage) {
87-
const obj = objectMap(
88-
thunks,
89-
(_, k) => baggage.get(k),
90-
);
87+
const obj = objectMap(thunks, (_, k) => baggage.get(k));
9188
return Promise.resolve(harden(obj));
9289
}
9390

0 commit comments

Comments
 (0)