diff --git a/src/components/Screens/PlanexWebview.tsx b/src/components/Screens/PlanexWebview.tsx index 67a1f7b..a44258f 100644 --- a/src/components/Screens/PlanexWebview.tsx +++ b/src/components/Screens/PlanexWebview.tsx @@ -127,6 +127,7 @@ function PlanexWebview(props: Props) { onMessage={props.onMessage} showAdvancedControls={false} showControls={props.currentGroup !== undefined} + incognito={true} /> {!props.currentGroup ? ( string); showAdvancedControls?: boolean; showControls?: boolean; + incognito?: boolean; }; const AnimatedWebView = Animated.createAnimatedComponent(WebView); @@ -272,6 +273,7 @@ function WebViewScreen(props: Props) { onLoad={() => injectJavaScript(getJavascriptPadding(containerPaddingTop))} // Animations onScroll={onScrollWithListener(onScroll)} + incognito={props.incognito} /> ); }