diff --git a/apps/tlon-mobile/src/components/AddGroupSheet.tsx b/apps/tlon-mobile/src/components/AddGroupSheet.tsx index a589e0788f..ef5843460e 100644 --- a/apps/tlon-mobile/src/components/AddGroupSheet.tsx +++ b/apps/tlon-mobile/src/components/AddGroupSheet.tsx @@ -47,7 +47,6 @@ interface AddGroupActions { }) => void; onScrollChange: (scrolling: boolean) => void; screenKey?: number; - contacts?: db.Contact[] | null; } const ActionContext = createContext({} as AddGroupActions); @@ -123,7 +122,6 @@ export default function AddGroupSheet({ onCreatedGroup, onScrollChange: setScreenScrolling, screenKey, - contacts, }} > ) { - const { onScrollChange, screenKey, contacts } = useContext(ActionContext); + const { onScrollChange, screenKey } = useContext(ActionContext); const insets = useSafeAreaInsets(); const onSelect = useCallback( (contactId: string) => { @@ -190,9 +188,6 @@ function RootScreen(props: NativeStackScreenProps) { return ( - {/* Unclear why we have to render another contacts provider here, but the screen context shows up empty */} - {/* on Android? */} - {/* */} ) { - {/* */} ); }