fix display on discover

This commit is contained in:
Violet Caulfield
2025-02-18 22:40:47 -06:00
parent ec658b1546
commit 88c1bc7a9e

View File

@@ -8,7 +8,10 @@ import { StackParamList } from "../types";
export default function Index({ navigation }: { navigation : NativeStackNavigationProp<StackParamList> }) : React.JSX.Element {
return (
<SafeAreaView>
<ScrollView removeClippedSubviews>
<ScrollView
contentInsetAdjustmentBehavior="automatic"
removeClippedSubviews
>
<RecentlyAdded navigation={navigation} />
</ScrollView>
</SafeAreaView>