fix: .js toevoegen aan imports

This commit is contained in:
Tibo De Peuter 2025-04-08 18:08:35 +02:00
parent 2d55ac6248
commit 095609d357
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
4 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@ import { Entity, Enum, ManyToOne, PrimaryKey, Property } from '@mikro-orm/core';
import { Student } from '../users/student.entity.js';
import { QuestionRepository } from '../../data/questions/question-repository.js';
import { Language } from '@dwengo-1/common/util/language';
import { Group } from '../assignments/group.entity';
import { Group } from '../assignments/group.entity.js';
@Entity({ repository: () => QuestionRepository })
export class Question {