Fixed broken clerk provider

This commit is contained in:
Atridad Lahiji 2024-05-22 13:53:11 -06:00
parent ff10e6f57f
commit e93656668d
No known key found for this signature in database

View file

@ -1,5 +1,5 @@
import { rootAuthLoader } from "@clerk/remix/ssr.server"; 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 type { LoaderFunction, MetaFunction } from "@remix-run/node";
import { import {
Links, Links,
@ -23,8 +23,6 @@ export const meta: MetaFunction = () => {
export const loader: LoaderFunction = (args) => rootAuthLoader(args); export const loader: LoaderFunction = (args) => rootAuthLoader(args);
export const ErrorBoundary = ClerkErrorBoundary();
function App() { function App() {
return ( return (
<html data-theme="dark" lang="en" className="h-[100%] w-[100%] fixed overflow-y-auto"> <html data-theme="dark" lang="en" className="h-[100%] w-[100%] fixed overflow-y-auto">