From 0a7bd7738d454cb17b157f431dae011b39b2f609 Mon Sep 17 00:00:00 2001 From: Ivan Alglave <ivanalglave@outlook.fr> Date: Sat, 10 Dec 2022 21:59:22 +0100 Subject: [PATCH] fixed broken import --- src/internships/schemas/nested-schemas/information.schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internships/schemas/nested-schemas/information.schema.ts b/src/internships/schemas/nested-schemas/information.schema.ts index bb8df63..7b58479 100644 --- a/src/internships/schemas/nested-schemas/information.schema.ts +++ b/src/internships/schemas/nested-schemas/information.schema.ts @@ -1,6 +1,6 @@ import { Document } from 'mongoose'; import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; -import { Student, StudentSchema } from './Student.schema'; +import { Student, StudentSchema } from './student.schema'; import { Company, CompanySchema } from './company.schema'; import { Affectation, AffectationSchema } from './affectation.schema'; import { Compensation, CompensationSchema } from './compensation.schema'; -- GitLab