fix issues in core

This commit is contained in:
2025-12-23 11:25:08 +01:00
parent 1efd971032
commit 2854ae3c5c
113 changed files with 1142 additions and 458 deletions

View File

@@ -30,8 +30,8 @@ export class Sponsor implements IEntity<SponsorId> {
this.id = props.id;
this.name = props.name;
this.contactEmail = props.contactEmail;
this.logoUrl = props.logoUrl;
this.websiteUrl = props.websiteUrl;
this.logoUrl = props.logoUrl ?? undefined;
this.websiteUrl = props.websiteUrl ?? undefined;
this.createdAt = props.createdAt;
}