diff --git a/front/packages/ui/src/browse/header.tsx b/front/packages/ui/src/browse/header.tsx index 1af26e9a..e37a2e89 100644 --- a/front/packages/ui/src/browse/header.tsx +++ b/front/packages/ui/src/browse/header.tsx @@ -21,9 +21,9 @@ import { HR, Icon, IconButton, Menu, P, PressableFeedback, tooltip, ts } from "@kyoo/primitives"; import ArrowDownward from "@material-symbols/svg-400/rounded/arrow_downward.svg"; import ArrowUpward from "@material-symbols/svg-400/rounded/arrow_upward.svg"; +import FilterList from "@material-symbols/svg-400/rounded/filter_list.svg"; import GridView from "@material-symbols/svg-400/rounded/grid_view.svg"; import Sort from "@material-symbols/svg-400/rounded/sort.svg"; -import FilterList from "@material-symbols/svg-400/rounded/filter_list.svg"; import ViewList from "@material-symbols/svg-400/rounded/view_list.svg"; import { forwardRef } from "react"; import { useTranslation } from "react-i18next"; diff --git a/front/packages/ui/src/browse/index.tsx b/front/packages/ui/src/browse/index.tsx index d3cb214e..8cc69bf4 100644 --- a/front/packages/ui/src/browse/index.tsx +++ b/front/packages/ui/src/browse/index.tsx @@ -33,13 +33,13 @@ import { ItemGrid } from "./grid"; import { BrowseSettings } from "./header"; import { ItemList } from "./list"; import { - MediaTypeAll, Layout, + type MediaType, + MediaTypeAll, + MediaTypeKey, MediaTypes, SortBy, SortOrd, - MediaTypeKey, - type MediaType, } from "./types"; const { useParam } = createParam<{ sortBy?: string; mediaType?: string }>(); diff --git a/front/packages/ui/src/browse/types.ts b/front/packages/ui/src/browse/types.ts index 186bea4a..c914ab26 100644 --- a/front/packages/ui/src/browse/types.ts +++ b/front/packages/ui/src/browse/types.ts @@ -19,8 +19,8 @@ */ import Collection from "@material-symbols/svg-400/rounded/collections_bookmark.svg"; -import TV from "@material-symbols/svg-400/rounded/tv.svg"; import Movie from "@material-symbols/svg-400/rounded/movie.svg"; +import TV from "@material-symbols/svg-400/rounded/tv.svg"; import All from "@material-symbols/svg-400/rounded/view_headline.svg"; import type { ComponentType } from "react"; import type { SvgProps } from "react-native-svg";