From e9f81323aea4c939ba7872f7ab9575495bce2f3c Mon Sep 17 00:00:00 2001 From: Justin Baur <19896123+justindbaur@users.noreply.github.com> Date: Wed, 22 Jan 2025 16:26:51 -0500 Subject: [PATCH] Fix Type Check --- libs/common/src/platform/storage/secure-storage.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/common/src/platform/storage/secure-storage.service.ts b/libs/common/src/platform/storage/secure-storage.service.ts index 9edfa4a88d1..26d0a506427 100644 --- a/libs/common/src/platform/storage/secure-storage.service.ts +++ b/libs/common/src/platform/storage/secure-storage.service.ts @@ -38,7 +38,7 @@ export abstract class SecureStorageService { * Depending on the feature, then you may need to not allow a feature to be used or you * will need to fallback to using insecure, disk based storage. */ - support$: Observable; + abstract support$: Observable; } export class UnsupportedSecureStorageService implements SecureStorageService {