From 3b3f41f6d743e3dba19e8a70c637527458b21673 Mon Sep 17 00:00:00 2001 From: SvFedoriv Date: Tue, 15 Nov 2022 11:56:38 +0100 Subject: [PATCH] Fix path in seed file --- backend/src/db/seed.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/src/db/seed.js b/backend/src/db/seed.js index dd8bb59cb..8339e48a8 100644 --- a/backend/src/db/seed.js +++ b/backend/src/db/seed.js @@ -9,9 +9,9 @@ import { createGroupMutation, joinGroupMutation, changeGroupMemberRoleMutation, -} from './graphql/groups' -import { createPostMutation } from './graphql/posts' -import { createCommentMutation } from './graphql/comments' +} from '../graphql/groups' +import { createPostMutation } from '../graphql/posts' +import { createCommentMutation } from '../graphql/comments' import { categories } from '../constants/categories' if (CONFIG.PRODUCTION && !CONFIG.PRODUCTION_DB_CLEAN_ALLOW) {