Skip to content

Commit

Permalink
Add missing Type decorator
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Dzikowski <[email protected]>
  • Loading branch information
dzikowski committed Jan 21, 2025
1 parent de5ad18 commit 0236ff9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
{
"files.eol": "\n"
}
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#4f7bc6",
"titleBar.activeForeground": "#ffffff",
"activityBar.background": "#4f7bc6",
"statusBar.background": "#4f7bc6",
"statusBar.foreground": "#ffffff",
"statusBar.border": "#4f7bc6",
"statusBarItem.remoteBackground": "#4f7bc6",
"statusBarItem.remoteForeground": "#ffffff"
}
}
1 change: 1 addition & 0 deletions chain-api/src/types/swap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ export class FillTokenSwapDto extends SubmitCallDTO {
})
@IsOptional()
@ValidateNested()
@Type(() => ExpectedTokenSwap)
public expectedTokenSwap?: ExpectedTokenSwap;

@JSONSchema({
Expand Down

0 comments on commit 0236ff9

Please sign in to comment.