From e7194eaafcdc9da72dc07e8a48fff994725c6694 Mon Sep 17 00:00:00 2001 From: M-i-k-e-l Date: Wed, 15 Oct 2025 15:50:11 +0300 Subject: [PATCH] Image - fix showing errorSource when source is undefined (iOS) --- src/components/image/index.tsx | 4 ++++ 1 file changed, 4 insertions(+) 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); }