Skip to content

Commit 69b28ef

Browse files
authored
feat: testing example app
1 parent 930089c commit 69b28ef

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

apps/example/src/hooks/useEditorState.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ import {
2525
DEFAULT_IMAGE_WIDTH,
2626
prepareImageDimensions,
2727
} from '../utils/prepareImageDimensions';
28-
import { launchImageLibrary } from 'react-native-image-picker';
2928

3029
type CurrentLinkState = OnLinkDetected;
3130

@@ -212,10 +211,7 @@ export function useEditorState() {
212211
return;
213212
}
214213

215-
const response = await launchImageLibrary({
216-
mediaType: 'photo',
217-
selectionLimit: 1,
218-
});
214+
const response: any = undefined;
219215

220216
if (response?.assets?.[0] === undefined) return;
221217

0 commit comments

Comments
 (0)