From 91cbe158bef8aa29ed02976834d19e5d00f89986 Mon Sep 17 00:00:00 2001 From: Roland Osborne Date: Tue, 3 Oct 2023 13:36:37 -0700 Subject: [PATCH] fixing unit test --- app/mobile/src/context/useTestStoreContext.hook.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/mobile/src/context/useTestStoreContext.hook.js b/app/mobile/src/context/useTestStoreContext.hook.js index 09c57fae..4213d62f 100644 --- a/app/mobile/src/context/useTestStoreContext.hook.js +++ b/app/mobile/src/context/useTestStoreContext.hook.js @@ -39,8 +39,8 @@ export function useTestStoreContext() { }, setFirstRun: async () => { }, - getAppValue: async (guid, key, unset) => { - return unset; + getAppValue: async (guid, key) => { + return {}; }, setAppValue: async (guid, key, value) => { },