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 = ({