fix import ordering

This commit is contained in:
Scott Merchant 2024-06-10 10:12:19 +09:30 committed by Zoe Roux
parent 6f5513f11c
commit dce3c5f576
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View File

@ -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";

View File

@ -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 }>();

View File

@ -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";