Skip to content

Commit 475dbaf

Browse files
committed
feat: replace WebViewComponent with WebViewContainer in BrowserScreen
1 parent 74a455d commit 475dbaf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/features/browser/screens/BrowserScreen

src/features/browser/screens/BrowserScreen/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { useBrowser } from "../../hooks/useBrowser";
1010
import AddressBar from "./AddressBar";
1111
import AddressBarDisplay from "./AddressBarDisplay";
1212
import Toolbar from "./Toolbar";
13-
import WebViewComponent from "./WebViewComponent";
13+
import WebViewContainer from "./WebViewContainer";
1414

1515
const KEYBOARD_OPENED_HEIGHT = 102;
1616
const KEYBOARD_CLOSED_HEIGHT = 0;
@@ -89,7 +89,7 @@ export default function BrowserScreen() {
8989
edges={["top"]}
9090
>
9191
<View style={styles.webViewContainer}>
92-
<WebViewComponent
92+
<WebViewContainer
9393
bottomPadding={isKeyboardVisible ? 16 : 0}
9494
onScrollDirectionChange={setScrollDirection}
9595
/>

0 commit comments

Comments
 (0)