diff --git a/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx b/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx index c6e1ac2e9..cd699ef23 100644 --- a/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx +++ b/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx @@ -3,7 +3,7 @@ import { StyledText } from '../../elements/StyledText' import { Box, HStack, SpanBox, VStack } from '../../elements/LayoutPrimitives' import { Dropdown, DropdownOption } from '../../elements/DropdownElements' import { Button } from '../../elements/Button' -import { Circle, DotsThree, Plus } from 'phosphor-react' +import { CaretRight, Circle, DotsThree, Plus } from 'phosphor-react' import { useGetSubscriptionsQuery } from '../../../lib/networking/queries/useGetSubscriptionsQuery' import { useGetLabelsQuery } from '../../../lib/networking/queries/useGetLabelsQuery' import { Label } from '../../../lib/networking/fragments/labelFragment' @@ -205,14 +205,14 @@ function FilterButton(props: FilterButtonProps): JSX.Element { { props.setState(!props.state) @@ -366,6 +370,9 @@ function ViewAllButton(props: ViewAllButtonProps): JSX.Element { }} > {props.state ? 'Hide' : 'View All'} + {props.state ? null : ( + + )} ) }