diff --git a/src/app/features/home/home.page.ts b/src/app/features/home/home.page.ts index 8e00cc93d..9d9dc1a20 100644 --- a/src/app/features/home/home.page.ts +++ b/src/app/features/home/home.page.ts @@ -151,6 +151,7 @@ export class HomePage { } private async promptAppUpdateIfAny() { + return; // Not applicable to Web App if (!this.platform.is('hybrid')) return; @@ -259,7 +260,7 @@ export class HomePage { } captureWithCustomCamera() { - if (!this.platform.is('android') || !this.platform.is('ios')) { + if (!this.platform.is('hybrid')) { this.capture(); } else { const captureIndex = this.afterCaptureTabIndex;