Skip to content

Commit 3044937

Browse files
fix(payments-next): Fix offer page
Because: * Reason was not optional This commit: *
1 parent 43241a8 commit 3044937

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

libs/payments/ui/src/lib/nestapp/validators/GetInterstitialOfferContentActionResult.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@ export class GetInterstitialOfferContentActionResult {
4444
@Type(() => PageContent)
4545
pageContent!: PageContent | null;
4646

47+
@IsOptional()
4748
@IsString()
48-
reason!: string;
49+
reason?: string;
4950

5051
@IsOptional()
5152
@IsString()

0 commit comments

Comments
 (0)