Format code

This commit is contained in:
Zoe Roux 2023-10-21 23:31:41 +02:00
parent 59a25fbee9
commit 7698a1490e
2 changed files with 4 additions and 10 deletions

View File

@ -100,8 +100,7 @@ export const ShowP = ResourceP.merge(ImagesP)
href: `/show/${x.slug}`, href: `/show/${x.slug}`,
playHref: `/watch/${x.slug}-s1e1`, playHref: `/watch/${x.slug}-s1e1`,
...x, ...x,
})) }));
;
/** /**
* A tv serie or an anime. * A tv serie or an anime.

View File

@ -24,30 +24,25 @@ import {
KyooImage, KyooImage,
LibraryItem, LibraryItem,
LibraryItemP, LibraryItemP,
Page,
Paged,
QueryIdentifier, QueryIdentifier,
getDisplayDate, getDisplayDate,
} from "@kyoo/models"; } from "@kyoo/models";
import { import {
Chip, Chip,
Container,
H3, H3,
IconFab, IconFab,
ImageBackground, ImageBackground,
Link, Link,
P, P,
Poster,
SubP, SubP,
alpha,
focusReset, focusReset,
ts, ts,
} from "@kyoo/primitives"; } from "@kyoo/primitives";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { Button, Pressable, ScrollView, View } from "react-native"; import { Pressable, ScrollView, View } from "react-native";
import { useRouter } from "solito/router"; import { useRouter } from "solito/router";
import { Theme, calc, percent, px, rem, useYoshiki } from "yoshiki/native"; import { Theme, percent, px, useYoshiki } from "yoshiki/native";
import { Fetch, Layout, WithLoading } from "../fetch"; import { Layout, WithLoading } from "../fetch";
import { InfiniteFetch } from "../fetch-infinite"; import { InfiniteFetch } from "../fetch-infinite";
import PlayArrow from "@material-symbols/svg-400/rounded/play_arrow-fill.svg"; import PlayArrow from "@material-symbols/svg-400/rounded/play_arrow-fill.svg";
import { ItemGrid } from "../browse/grid"; import { ItemGrid } from "../browse/grid";