From 5691e74bdc8273905e901107565643bca671ab86 Mon Sep 17 00:00:00 2001 From: Ruben Date: Tue, 16 Apr 2024 12:12:23 +0000 Subject: [PATCH] Add 'use client' to auth_helpers --- src/react/auth_helpers.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/react/auth_helpers.tsx b/src/react/auth_helpers.tsx index 4063903..62272f3 100644 --- a/src/react/auth_helpers.tsx +++ b/src/react/auth_helpers.tsx @@ -1,3 +1,5 @@ +'use client'; + import React from "react"; import { ReactNode } from "react"; import { useConvexAuth } from "./ConvexAuthState.js";