diff options
Diffstat (limited to 'apps/mobile/app/dashboard')
| -rw-r--r-- | apps/mobile/app/dashboard/(tabs)/highlights.tsx | 2 | ||||
| -rw-r--r-- | apps/mobile/app/dashboard/(tabs)/index.tsx | 2 | ||||
| -rw-r--r-- | apps/mobile/app/dashboard/(tabs)/lists.tsx | 2 | ||||
| -rw-r--r-- | apps/mobile/app/dashboard/(tabs)/settings.tsx | 2 | ||||
| -rw-r--r-- | apps/mobile/app/dashboard/(tabs)/tags.tsx | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/apps/mobile/app/dashboard/(tabs)/highlights.tsx b/apps/mobile/app/dashboard/(tabs)/highlights.tsx index 8a0a8ae3..8d6e37a4 100644 --- a/apps/mobile/app/dashboard/(tabs)/highlights.tsx +++ b/apps/mobile/app/dashboard/(tabs)/highlights.tsx @@ -42,7 +42,7 @@ export default function Highlights() { }; return ( - <CustomSafeAreaView> + <CustomSafeAreaView edges={["top"]}> <HighlightList highlights={data.pages.flatMap((p) => p.highlights)} header={ diff --git a/apps/mobile/app/dashboard/(tabs)/index.tsx b/apps/mobile/app/dashboard/(tabs)/index.tsx index 0a51b817..3e49e6f2 100644 --- a/apps/mobile/app/dashboard/(tabs)/index.tsx +++ b/apps/mobile/app/dashboard/(tabs)/index.tsx @@ -76,7 +76,7 @@ function HeaderRight({ export default function Home() { return ( - <CustomSafeAreaView> + <CustomSafeAreaView edges={["top"]}> <UpdatingBookmarkList query={{ archived: false }} header={ diff --git a/apps/mobile/app/dashboard/(tabs)/lists.tsx b/apps/mobile/app/dashboard/(tabs)/lists.tsx index a5d4ebc8..3f81a36e 100644 --- a/apps/mobile/app/dashboard/(tabs)/lists.tsx +++ b/apps/mobile/app/dashboard/(tabs)/lists.tsx @@ -186,7 +186,7 @@ export default function Lists() { }); return ( - <CustomSafeAreaView> + <CustomSafeAreaView edges={["top"]}> <FlatList className="h-full" ListHeaderComponent={ diff --git a/apps/mobile/app/dashboard/(tabs)/settings.tsx b/apps/mobile/app/dashboard/(tabs)/settings.tsx index 079afab2..ba38d9e6 100644 --- a/apps/mobile/app/dashboard/(tabs)/settings.tsx +++ b/apps/mobile/app/dashboard/(tabs)/settings.tsx @@ -46,7 +46,7 @@ export default function Dashboard() { } return ( - <CustomSafeAreaView> + <CustomSafeAreaView edges={["top"]}> <UserProfileHeader image={data?.image} name={data?.name} diff --git a/apps/mobile/app/dashboard/(tabs)/tags.tsx b/apps/mobile/app/dashboard/(tabs)/tags.tsx index b05095ac..8a629305 100644 --- a/apps/mobile/app/dashboard/(tabs)/tags.tsx +++ b/apps/mobile/app/dashboard/(tabs)/tags.tsx @@ -75,7 +75,7 @@ export default function Tags() { }; return ( - <CustomSafeAreaView> + <CustomSafeAreaView edges={["top"]}> <FlatList className="h-full" ListHeaderComponent={ |
