From 9b874e7eaba7831c8d51c53803711cee71ce10b1 Mon Sep 17 00:00:00 2001 From: Konstantin Schaper Date: Mon, 19 Oct 2020 20:47:59 +0200 Subject: [PATCH] fix imports --- scm-ui/ui-components/src/SyntaxHighlighter.tsx | 2 +- scm-ui/ui-components/src/repos/annotate/Annotate.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scm-ui/ui-components/src/SyntaxHighlighter.tsx b/scm-ui/ui-components/src/SyntaxHighlighter.tsx index f47251a4b0..dd87020403 100644 --- a/scm-ui/ui-components/src/SyntaxHighlighter.tsx +++ b/scm-ui/ui-components/src/SyntaxHighlighter.tsx @@ -25,7 +25,7 @@ import React from "react"; import { PrismAsyncLight as ReactSyntaxHighlighter } from "react-syntax-highlighter"; // eslint-disable-next-line no-restricted-imports -import highlightingTheme from "@scm-manager/ui-styles/src/syntax-highlighting.js"; +import highlightingTheme from "@scm-manager/ui-styles/src/syntax-highlighting"; type Props = { language?: string; diff --git a/scm-ui/ui-components/src/repos/annotate/Annotate.tsx b/scm-ui/ui-components/src/repos/annotate/Annotate.tsx index c517e21159..cc7ba88aab 100644 --- a/scm-ui/ui-components/src/repos/annotate/Annotate.tsx +++ b/scm-ui/ui-components/src/repos/annotate/Annotate.tsx @@ -30,7 +30,7 @@ import { PrismAsyncLight as ReactSyntaxHighlighter, createElement } from "react- // eslint-disable-next-line @typescript-eslint/ban-ts-ignore // @ts-ignore // eslint-disable-next-line no-restricted-imports -import highlightingTheme from "@scm-manager/ui-styles/src/syntax-highlighting.js"; +import highlightingTheme from "@scm-manager/ui-styles/src/syntax-highlighting"; import { DateInput } from "../../useDateFormatter"; import Popover from "./Popover"; import AnnotateLine from "./AnnotateLine";