From 1d9cd128210d9cd36d775fbce35fadd8f89a1c57 Mon Sep 17 00:00:00 2001 From: Konstantin Schaper Date: Fri, 5 Aug 2022 10:53:06 +0200 Subject: [PATCH] Revert changes to production environment introduced in #2098 --- scm-ui/ui-components/src/OverviewPageActions.tsx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/scm-ui/ui-components/src/OverviewPageActions.tsx b/scm-ui/ui-components/src/OverviewPageActions.tsx index c1a3ac81db..18c8959975 100644 --- a/scm-ui/ui-components/src/OverviewPageActions.tsx +++ b/scm-ui/ui-components/src/OverviewPageActions.tsx @@ -23,10 +23,9 @@ */ import React, { FC, useState } from "react"; import { useHistory, useLocation } from "react-router-dom"; -import { urls } from "./index"; -import { FilterInput, Select } from "./forms"; -import { ButtonVariants, LinkButton } from "@scm-manager/ui-buttons"; import classNames from "classnames"; +import { Button, urls } from "./index"; +import { FilterInput, Select } from "./forms"; type Props = { showCreateButton: boolean; @@ -55,7 +54,7 @@ const OverviewPageActions: FC = ({ label, testId, searchPlaceholder, - groupAriaLabelledby, + groupAriaLabelledby }) => { const history = useHistory(); const location = useLocation(); @@ -67,7 +66,7 @@ const OverviewPageActions: FC = ({