Fix lint errors

This commit is contained in:
Gregory Schier
2024-02-26 07:43:08 -08:00
parent c2f3fac22b
commit 4876ff587a
7 changed files with 13 additions and 13 deletions

View File

@@ -11,7 +11,7 @@ export function useActiveCookieJar() {
const kv = useKeyValue<string | null>({
namespace: NAMESPACE_GLOBAL,
key: ['activeCookieJar', workspaceId ?? 'n/a'],
defaultValue: null,
fallback: null,
});
const activeCookieJar = cookieJars.find((cookieJar) => cookieJar.id === kv.value);