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 { HR, Icon, IconButton, Menu, P, PressableFeedback, tooltip, ts } from "@kyoo/primitives";
import ArrowDownward from "@material-symbols/svg-400/rounded/arrow_downward.svg"; import ArrowDownward from "@material-symbols/svg-400/rounded/arrow_downward.svg";
import ArrowUpward from "@material-symbols/svg-400/rounded/arrow_upward.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 GridView from "@material-symbols/svg-400/rounded/grid_view.svg";
import Sort from "@material-symbols/svg-400/rounded/sort.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 ViewList from "@material-symbols/svg-400/rounded/view_list.svg";
import { forwardRef } from "react"; import { forwardRef } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@ -33,13 +33,13 @@ import { ItemGrid } from "./grid";
import { BrowseSettings } from "./header"; import { BrowseSettings } from "./header";
import { ItemList } from "./list"; import { ItemList } from "./list";
import { import {
MediaTypeAll,
Layout, Layout,
type MediaType,
MediaTypeAll,
MediaTypeKey,
MediaTypes, MediaTypes,
SortBy, SortBy,
SortOrd, SortOrd,
MediaTypeKey,
type MediaType,
} from "./types"; } from "./types";
const { useParam } = createParam<{ sortBy?: string; mediaType?: string }>(); 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 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 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 All from "@material-symbols/svg-400/rounded/view_headline.svg";
import type { ComponentType } from "react"; import type { ComponentType } from "react";
import type { SvgProps } from "react-native-svg"; import type { SvgProps } from "react-native-svg";