From aa15d5a6dfd266d32a1475493257d1fb04e3714e Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sun, 2 Nov 2025 00:21:15 +0100 Subject: [PATCH] Comment --- web/pages/_app.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/pages/_app.tsx b/web/pages/_app.tsx index f5997f2b..0979f65b 100644 --- a/web/pages/_app.tsx +++ b/web/pages/_app.tsx @@ -14,13 +14,13 @@ import WebPush from "web/lib/service/web-push"; import AndroidPush from "web/lib/service/android-push"; import {isAndroidWebView} from "web/lib/util/webview"; import {Capacitor} from '@capacitor/core'; -import {StatusBar, Style} from '@capacitor/status-bar'; +import {StatusBar} from '@capacitor/status-bar'; if (Capacitor.isNativePlatform()) { // Only runs on iOS/Android native // Note sure it's doing anything, though, need to check StatusBar.setOverlaysWebView({overlay: false}).catch(console.warn); - StatusBar.setStyle({style: Style.Light}).catch(console.warn); + // StatusBar.setStyle({style: Style.Light}).catch(console.warn); }