File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -196,6 +196,7 @@ function FastImageBase({
196
196
197
197
const resolvedSource = Image . resolveAssetSource ( source as any )
198
198
const resolvedDefaultSource = resolveDefaultSource ( defaultSource )
199
+ const resolvedDefaultSourceAsString = resolvedDefaultSource !== null ? String ( resolvedDefaultSource ) : null ;
199
200
200
201
return (
201
202
< View style = { [ styles . imageContainer , style ] } ref = { forwardedRef } >
@@ -204,7 +205,7 @@ function FastImageBase({
204
205
tintColor = { tintColor }
205
206
style = { StyleSheet . absoluteFill }
206
207
source = { resolvedSource }
207
- defaultSource = { resolvedDefaultSource }
208
+ defaultSource = { resolvedDefaultSourceAsString }
208
209
onFastImageLoadStart = { onLoadStart }
209
210
onFastImageProgress = { onProgress }
210
211
onFastImageLoad = { onLoad }
You can’t perform that action at this time.
0 commit comments