Fixed broken clerk provider
This commit is contained in:
parent
ff10e6f57f
commit
e93656668d
1 changed files with 1 additions and 3 deletions
|
@ -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">
|
||||||
|
|
Loading…
Add table
Reference in a new issue