diff --git a/src/services/browserPlatformUtils.service.ts b/src/services/browserPlatformUtils.service.ts index e0439f6bcb..dea8ccc7c9 100644 --- a/src/services/browserPlatformUtils.service.ts +++ b/src/services/browserPlatformUtils.service.ts @@ -307,6 +307,10 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService return null; } + supportsSecureStorage(): boolean { + return false; + } + private isSafariExtension(): boolean { return (window as any).safariAppExtension === true; }