From 8ad5d7e4d13e04de4a998297b1d66fc08055b72c Mon Sep 17 00:00:00 2001 From: Bret Little Date: Fri, 7 Nov 2025 13:24:04 -0500 Subject: [PATCH] Make error --- app/routes/make-error.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 app/routes/make-error.tsx diff --git a/app/routes/make-error.tsx b/app/routes/make-error.tsx new file mode 100644 index 00000000..f4a2958a --- /dev/null +++ b/app/routes/make-error.tsx @@ -0,0 +1,11 @@ +export async function loader() { + makeError(); +} + +function makeError() { + throw new Error('This is a test error'); +} + +export default function () { + return
MakeError
; +}