Fixes from linter

This commit is contained in:
Scott Merchant 2024-06-09 10:46:10 +09:30 committed by Zoe Roux
parent 4810db554e
commit 243768e019
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ import { forwardRef } from "react";
import { useTranslation } from "react-i18next";
import { type PressableProps, View } from "react-native";
import { useYoshiki } from "yoshiki/native";
import { Layout, MediaType, MediaTypeAll, SearchSort, SortOrd } from "./types";
import { Layout, type MediaType, MediaTypeAll, SearchSort, SortOrd } from "./types";
const SortTrigger = forwardRef<View, PressableProps & { sortKey: string }>(function SortTrigger(
{ sortKey, ...props },

View File

@ -39,7 +39,7 @@ import {
SortBy,
SortOrd,
MediaTypeKey,
MediaType,
type MediaType,
} from "./types";
const { useParam } = createParam<{ sortBy?: string; mediaType?: string }>();