Skip to content

Commit

Permalink
Changing default token value from null to undefined on super admin qu…
Browse files Browse the repository at this point in the history
…ery to include custom tokens (#122)
  • Loading branch information
Rafael Cidade authored May 11, 2022
1 parent 885d339 commit 8727993
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "etherspot",
"version": "1.31.0",
"version": "1.31.1",
"description": "Etherspot SDK",
"keywords": [
"ether",
Expand Down
2 changes: 1 addition & 1 deletion src/sdk/dto/get-p2p-payment-channels-admin.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class GetP2PPaymentChannelsAdminDto extends PaginationDto {

@IsOptional()
@IsAddress()
token?: string = null;
token?: string = undefined;

@IsOptional()
@IsBoolean()
Expand Down

0 comments on commit 8727993

Please sign in to comment.