diff --git a/src/components/image/index.tsx b/src/components/image/index.tsx index b8aa50e265..cda0660d44 100644 --- a/src/components/image/index.tsx +++ b/src/components/image/index.tsx @@ -194,6 +194,10 @@ class Image extends PureComponent { onError = (event: NativeSyntheticEvent) => { if (event.nativeEvent.error) { + // TODO: RN 77 hack - test in future releases (ticket 4835) + if (Constants.isIOS && this.props.source === undefined) { + return; + } this.setState({error: true}); this.props.onError?.(event); }