### What is the type of issue? Something else ### What is the issue? When attempting to complete the Error Handling assignment, I receive this error: <img width="812" height="385" alt="Image" src="https://github.com/user-attachments/assets/91ba78b8-be7c-461f-9cc0-97da7e2cab14" /> `_r_r is not defined` This error occurs on the `return` statement in `.onError`: ```ts .onError(({ code, status }) => { if(code === "NOT_FOUND") return "" }) ``` The error appears as soon as I type the `""` after `return`. Copying and pasting the tutorial-provided answer results in the same error. ### Where did you find it? https://elysiajs.com/tutorial/patterns/error-handling/