diff --git a/apps/mobile/src/modules/ai/summary.tsx b/apps/mobile/src/modules/ai/summary.tsx index a11798125..3cbbf2bf1 100644 --- a/apps/mobile/src/modules/ai/summary.tsx +++ b/apps/mobile/src/modules/ai/summary.tsx @@ -13,6 +13,7 @@ import { StyleSheet, Text, TextInput, + TouchableOpacity, View, } from "react-native" import Animated, { @@ -108,13 +109,13 @@ export const AISummary: FC<{ {summaryTextForSheet && ( - setSheetOpen(true)} className="bg-quaternary-system-fill rounded-full p-1.5 active:opacity-70" hitSlop={{ top: 8, bottom: 8, left: 8, right: 8 }} > - + )} @@ -239,33 +240,36 @@ const SelectableTextSheet: FC<{ onRequestClose={handleClose} animationType="fade" statusBarTranslucent + navigationBarTranslucent > - - - - - - - - - AI Summary - - - - - - {text} - - + + + + + + + + + + AI Summary + + + + + + {text} + + + ) }