diff --git a/apps/mobile/src/modules/feed/FollowFeed.tsx b/apps/mobile/src/modules/feed/FollowFeed.tsx index d5a418bfb2..5cabfe9883 100644 --- a/apps/mobile/src/modules/feed/FollowFeed.tsx +++ b/apps/mobile/src/modules/feed/FollowFeed.tsx @@ -5,6 +5,7 @@ import { router, Stack, useLocalSearchParams, useNavigation } from "expo-router" import { useState } from "react" import { Controller, useForm } from "react-hook-form" import { ScrollView, Text, View } from "react-native" +import { useSafeAreaInsets } from "react-native-safe-area-context" import { z } from "zod" import { @@ -86,6 +87,8 @@ function FollowImpl() { } } + const insets = useSafeAreaInsets() + const { isValid, isDirty } = form.formState if (!feed?.id) { @@ -93,7 +96,10 @@ function FollowImpl() { } return ( - +