From 8fa2a82a81921c5ce49d1eb09a40092e468e0677 Mon Sep 17 00:00:00 2001 From: Phill Pover Date: Sat, 29 Mar 2025 09:01:20 +0000 Subject: [PATCH] Fixing comment import --- backend/src/post/post.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/post/post.service.ts b/backend/src/post/post.service.ts index 2f435a9..8953977 100644 --- a/backend/src/post/post.service.ts +++ b/backend/src/post/post.service.ts @@ -2,7 +2,7 @@ import { Injectable } from '@nestjs/common'; import { InjectRepository } from '@nestjs/typeorm'; import { Repository } from 'typeorm'; import { Post } from './post.entity'; -import { Comment } from './comment.entity'; +import { Comment } from '../comment/comment.entity'; @Injectable() export class PostService {