diff --git a/src/app/attributes/components/AttributesHeader.tsx b/src/app/attributes/components/AttributesHeader.tsx index f1f1603..1462551 100644 --- a/src/app/attributes/components/AttributesHeader.tsx +++ b/src/app/attributes/components/AttributesHeader.tsx @@ -1,7 +1,7 @@ "use client"; import { Dispatch, FC, SetStateAction, useMemo } from "react"; -import { Group, TextInput } from "@mantine/core"; +import { Divider, Flex, Group, TextInput } from "@mantine/core"; import AttrViewSegmentedControl from "@/app/attributes/components/AttrViewSegmentedControl"; import { useAttributesContext } from "@/app/attributes/contexts/AttributesContext"; import AttributePageView from "@/app/attributes/types/view"; @@ -63,19 +63,24 @@ const AttributesHeader: FC = ({ view, setView }) => { ); return ( - {view === AttributePageView.ATTRIBUTES ? attributeActions : selectActions} + {isMobile && } - + ); };