chore: resolve build issues so we can deploy the prototype

Lint problems are for future us.
This commit is contained in:
2025-02-17 02:47:28 -08:00
parent 2f08f1ed18
commit b386ec53fb
17 changed files with 17 additions and 17 deletions

View File

@ -53,7 +53,7 @@ export const submitAppealHandler = async(
await sendMail("appeal", data);
await response.send({ success: true });
} catch (error) {
await logger.error("/submit/appeals", error);
await logger.error("/submit/appeals", error as Error);
await response.status(500).send({ error: error instanceof Error
? error.message
: "Internal Server Error" });