style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-04-08 08:56:50 +00:00
parent ba725f67b2
commit 8a55c0f003
22 changed files with 137 additions and 157 deletions

View file

@ -22,7 +22,7 @@ export class Submission {
submissionNumber?: number;
@ManyToOne({
entity: () => Group
entity: () => Group,
})
onBehalfOf!: Group;
@ -34,8 +34,6 @@ export class Submission {
@Property({ type: 'datetime' })
submissionTime!: Date;
@Property({ type: 'json' })
content!: string;
}