this doesn't even do anything

This commit is contained in:
Joonas 2023-01-21 15:19:51 +02:00
parent e2bee89d22
commit 2e0cb4874f
1 changed files with 0 additions and 10 deletions

View File

@ -41,13 +41,3 @@ export async function loader({ request }) {
},
});
}
export function ErrorBoundary({ error }) {
return (
<div className="bg-red rounded p-4 text-white shadow">
<Link to={"/"}>Back</Link>
<h1>{error.message}</h1>
<code>{error.stack}</code>
</div>
);
}