Skip to content

Commit 18bf6a8

Browse files
ali-masterxaviergonz
authored andcommitted
chore: using property shorthand (#1402)
1 parent 5b81b33 commit 18bf6a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/mobx-state-tree/src/middlewares/create-action-tracking-middleware.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ export function createActionTrackingMiddleware<T = any>(
3939
const context = hooks.onStart(call)
4040
hooks.onResume(call, context)
4141
runningActions.set(call.id, {
42-
call: call,
43-
context: context,
42+
call,
43+
context,
4444
async: false
4545
})
4646
try {

0 commit comments

Comments
 (0)