Skip to content

Commit

Permalink
Fix snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
Cal-L committed Dec 12, 2024
1 parent 8ff83dc commit e4defa3
Showing 1 changed file with 58 additions and 53 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,81 +9,86 @@ exports[`BrowserUrlModal should render correctly 1`] = `
}
}
>
<View
<RNCSafeAreaView
style={
{
"backgroundColor": "#ffffff",
"flexDirection": "row",
"height": 87,
"paddingHorizontal": 10,
"paddingTop": 50,
"flex": 1,
}
}
>
<View
style={
{
"backgroundColor": "#f2f4f6",
"borderRadius": 30,
"flex": 1,
"alignItems": "center",
"flexDirection": "row",
"height": 30,
"paddingHorizontal": 10,
}
}
>
<TextInput
autoCapitalize="none"
autoCorrect={false}
autoFocus={true}
keyboardAppearance="light"
keyboardType="web-search"
onChangeText={[Function]}
onSubmitEditing={[Function]}
placeholder="Search or Type URL"
placeholderTextColor="#9fa6ae"
returnKeyType="go"
selectTextOnFocus={true}
<View
style={
{
"color": "#141618",
"backgroundColor": "#f2f4f6",
"borderRadius": 30,
"flex": 1,
"fontFamily": "EuclidCircularB-Regular",
"fontSize": 14,
"fontWeight": "400",
"paddingLeft": 15,
"flexDirection": "row",
}
}
testID="browser-modal-url-input"
/>
</View>
<TouchableOpacity
onPress={[Function]}
style={
{
"justifyContent": "center",
"marginLeft": 10,
"marginTop": -6,
}
}
testID="cancel-url-button"
>
<Text
>
<TextInput
autoCapitalize="none"
autoCorrect={false}
autoFocus={true}
keyboardAppearance="light"
keyboardType="web-search"
onChangeText={[Function]}
onSubmitEditing={[Function]}
placeholder="Search or Type URL"
placeholderTextColor="#9fa6ae"
returnKeyType="go"
selectTextOnFocus={true}
style={
{
"color": "#141618",
"flex": 1,
"fontFamily": "EuclidCircularB-Regular",
"fontSize": 14,
"fontWeight": "400",
"paddingLeft": 15,
"paddingVertical": 6,
}
}
testID="browser-modal-url-input"
/>
</View>
<TouchableOpacity
onPress={[Function]}
style={
{
"color": "#0376c9",
"fontFamily": "EuclidCircularB-Regular",
"fontSize": 14,
"fontWeight": "400",
"marginLeft": 10,
}
}
testID="cancel-url-button"
>
Cancel
</Text>
</TouchableOpacity>
</View>
<Component
onDismiss={[Function]}
onSubmit={[Function]}
/>
<Text
style={
{
"color": "#0376c9",
"fontFamily": "EuclidCircularB-Regular",
"fontSize": 14,
"fontWeight": "400",
}
}
>
Cancel
</Text>
</TouchableOpacity>
</View>
<Component
onDismiss={[Function]}
onSubmit={[Function]}
/>
</RNCSafeAreaView>
</ForwardRef>
`;

0 comments on commit e4defa3

Please sign in to comment.