|  | @@ -67,10 +67,10 @@ const AutoHeightWebView = React.memo(
 | 
	
		
			
			| 67 | 67 |        [width, height, onSizeUpdated]
 | 
	
		
			
			| 68 | 68 |      );
 | 
	
		
			
			| 69 | 69 |      return (
 | 
	
		
			
			| 70 |  | -      <View style={[props.style, { height: height || 20 }]}>
 | 
	
		
			
			|  | 70 | +      <View style={[props.style, { height: height || 20, transform: [{ translateX: -1 }] }]}>
 | 
	
		
			
			| 71 | 71 |          <WebView
 | 
	
		
			
			| 72 | 72 |            {...props}
 | 
	
		
			
			| 73 |  | -          style={{}}
 | 
	
		
			
			|  | 73 | +          style={{transform: [{ translateX: 1 }]}}
 | 
	
		
			
			| 74 | 74 |            ref={webView}
 | 
	
		
			
			| 75 | 75 |            onMessage={handleMessage}
 | 
	
		
			
			| 76 | 76 |            injectedJavaScript={script}
 |