Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 7ddc0b7

Browse files
authored
Correct the dir parameter of MSC3715 (#9391)
1 parent 476ed04 commit 7ddc0b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/stores/widgets/StopGapWidgetDriver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ export class StopGapWidgetDriver extends WidgetDriver {
449449
from,
450450
to,
451451
limit,
452-
direction: dir,
452+
dir,
453453
});
454454

455455
return {

test/stores/widgets/StopGapWidgetDriver-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ describe("StopGapWidgetDriver", () => {
266266
limit: 25,
267267
from: 'from-token',
268268
to: 'to-token',
269-
direction: Direction.Forward,
269+
dir: Direction.Forward,
270270
},
271271
);
272272
});

0 commit comments

Comments
 (0)