diff --git a/src/index.tsx b/src/index.tsx index 51e80bd..7ac55e2 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -53,13 +53,7 @@ const AndroidImage = (props: FasterImageProps) => { return ( { const { width, height } = event.nativeEvent.source; @@ -96,5 +90,6 @@ const AndroidImage = (props: FasterImageProps) => { * */ export const FasterImageView = Platform.select({ ios: requireNativeComponent(ComponentName), - android: AndroidImage as any, + // @ts-ignore + android: AndroidImage, });