feat: update WebsiteType and EventConfig interfaces with new properties, enhance tenant creation in tests

This commit is contained in:
2026-08-03 09:09:58 -03:00
parent 941cb5c73c
commit ec18aaf0c5
3 changed files with 38 additions and 5 deletions

View File

@@ -25,6 +25,6 @@ export class HeroBannerComponent {
return '';
}
return this.eventConfig.dates.join(', ');
return this.eventConfig.dates.map(({ date }) => date).join(', ');
}
}