This commit is contained in:
Violet Caulfield
2025-02-18 22:54:30 -06:00
parent 3de2873959
commit 986d8cc360

View File

@@ -5,7 +5,6 @@ import RecentlyAdded from "./helpers/just-added";
import { NativeStackNavigationProp } from "@react-navigation/native-stack";
import { StackParamList } from "../types";
import { H2 } from "../Global/helpers/text";
import Client from "../../api/client";
export default function Index({ navigation }: { navigation : NativeStackNavigationProp<StackParamList> }) : React.JSX.Element {
return (
@@ -14,7 +13,7 @@ export default function Index({ navigation }: { navigation : NativeStackNavigati
contentInsetAdjustmentBehavior="automatic"
removeClippedSubviews
>
<H2>{`Recently added to ${Client.server?.name ?? "Jellyfin"}`}</H2>
<H2>{`Recently added`}</H2>
<RecentlyAdded navigation={navigation} />
</ScrollView>
</SafeAreaView>