From 3122ec5fb0e530e2de42436e611fe47a0cfffd8d Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Wed, 3 Apr 2019 17:09:31 +0200 Subject: [PATCH] fixes wrong import of NotFoundError --- scm-ui/src/repos/branches/containers/BranchRoot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm-ui/src/repos/branches/containers/BranchRoot.js b/scm-ui/src/repos/branches/containers/BranchRoot.js index 8d4774c23b..2e8f910275 100644 --- a/scm-ui/src/repos/branches/containers/BranchRoot.js +++ b/scm-ui/src/repos/branches/containers/BranchRoot.js @@ -13,7 +13,7 @@ import { } from "../modules/branches"; import { ErrorPage, Loading } from "@scm-manager/ui-components"; import type { History } from "history"; -import { NotFoundError } from "./errors"; +import { NotFoundError } from "@scm-manager/ui-components"; type Props = { repository: Repository,