From a36a19c33a676f1d2202d890f878cabd388cf8aa Mon Sep 17 00:00:00 2001 From: Martin Lehmann Date: Fri, 29 Apr 2022 10:44:01 +0200 Subject: [PATCH] Don't import from root URL (#1540) --- src/lib/types/stores/project-store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/types/stores/project-store.ts b/src/lib/types/stores/project-store.ts index aca4caa950..d8263a0959 100644 --- a/src/lib/types/stores/project-store.ts +++ b/src/lib/types/stores/project-store.ts @@ -1,4 +1,4 @@ -import { IEnvironmentProjectLink } from 'lib/db/project-store'; +import { IEnvironmentProjectLink } from '../../db/project-store'; import { IProject, IProjectWithCount } from '../model'; import { Store } from './store';