fix: correct Team.createdBy type (#965)

This commit is contained in:
Dominik Pschenitschni 2025-06-16 23:27:43 +02:00 committed by GitHub
parent 12934097a0
commit a2ac4bdc7f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ export default class TeamModel extends AbstractModel<ITeam> implements ITeam {
externalId = ''
isPublic: boolean = false
createdBy: IUser = {} // FIXME: seems wrong
createdBy: IUser | null = null
created: Date = null
updated: Date = null