From e93656668d4351b0cc08b24842df834b4182628b Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Wed, 22 May 2024 13:53:11 -0600 Subject: [PATCH] Fixed broken clerk provider --- app/root.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/root.tsx b/app/root.tsx index 77c2494..0be3d42 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -1,5 +1,5 @@ import { rootAuthLoader } from "@clerk/remix/ssr.server"; -import { ClerkApp, ClerkErrorBoundary } from "@clerk/remix"; +import { ClerkApp } from "@clerk/remix"; import type { LoaderFunction, MetaFunction } from "@remix-run/node"; import { Links, @@ -23,8 +23,6 @@ export const meta: MetaFunction = () => { export const loader: LoaderFunction = (args) => rootAuthLoader(args); -export const ErrorBoundary = ClerkErrorBoundary(); - function App() { return (