Skip to content

Commit 1ff6452

Browse files
author
Brandon Sneed
committed
fix(ts): made linter happy
1 parent 7eac37e commit 1ff6452

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/core/src/middleware.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Integrations, Context, Options, JsonMap } from './bridge'
1+
import { Context, Integrations, JsonMap, Options } from './bridge'
22
import { assertNever } from './utils'
33
import { NativeWrapper } from './wrapper'
44

@@ -93,8 +93,8 @@ export class MiddlewareChain {
9393
const payload: Payload = await this.exec(type, ctx, data)
9494

9595
const opts: Options = {
96-
integrations: payload.data.integrations,
97-
context: payload.context
96+
context: payload.context,
97+
integrations: payload.data.integrations
9898
}
9999

100100
switch (payload.type) {

0 commit comments

Comments
 (0)