Skip to content

Commit

Permalink
make chaintype nullable on managing funds (errors generated)
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosQ96 committed Feb 7, 2024
1 parent f1c1fd1 commit f76d8cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/entities/projectVerificationForm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class FormRelatedAddress {
address: string;
@Field({ nullable: true })
networkId: number;
@Field(type => ChainType, { defaultValue: ChainType.EVM })
@Field(type => ChainType, { defaultValue: ChainType.EVM, nullable: true })
chainType?: ChainType;
}

Expand Down

0 comments on commit f76d8cd

Please sign in to comment.