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

Correct the dir parameter of MSC3715 #9391

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/stores/widgets/StopGapWidgetDriver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ export class StopGapWidgetDriver extends WidgetDriver {
from,
to,
limit,
direction: dir,
dir,
});

return {
Expand Down
2 changes: 1 addition & 1 deletion test/stores/widgets/StopGapWidgetDriver-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ describe("StopGapWidgetDriver", () => {
limit: 25,
from: 'from-token',
to: 'to-token',
direction: Direction.Forward,
dir: Direction.Forward,
},
);
});
Expand Down