From fd0e775ee9a1b208f173f5258c9e6b2e140559c3 Mon Sep 17 00:00:00 2001 From: Bobby Radford Date: Wed, 30 Apr 2025 12:23:06 -0400 Subject: [PATCH] fix: waitForToken param should be a boolean --- src/context/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context/types.ts b/src/context/types.ts index e731d5b..1b96d62 100644 --- a/src/context/types.ts +++ b/src/context/types.ts @@ -10,7 +10,7 @@ export type TRowndContext = { setUserValue: (key: string, value: any) => Promise; getAccessToken: (e?: { token?: string; - waitForToken?: string; + waitForToken?: boolean; [key: string]: any; }) => Promise; getFirebaseIdToken: (token: string) => Promise;