From c63738e17df4d5bfff2049a6d1c445c609c2189e Mon Sep 17 00:00:00 2001 From: Sam Nystrom Date: Thu, 14 Mar 2024 19:29:29 -0400 Subject: fix: fix lots of type errors --- src/context.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/context.ts') diff --git a/src/context.ts b/src/context.ts index 054d796..dd7bb51 100644 --- a/src/context.ts +++ b/src/context.ts @@ -1,4 +1,4 @@ import { createContext } from 'preact'; -import type { PocketBase } from 'pocketbase'; +import PocketBase from 'pocketbase'; -export const Pb = createContext(); +export const Pb = createContext(null); -- cgit v1.2.3